/* Custom Styles */
:root {
    --primary-color: #FF4500;
    --primary-hover: #E63E00;
}

/* Body and Layout */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navigation Links */
.nav-link {
    color: #4B5563;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #F97316;
}

.nav-link.active::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #F97316;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #EA580C;
    transform: scale(1.05);
}

/* Legal Cards */
.legal-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.legal-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Sticky Header */
header.scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-link::after {
        display: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #F3F4F6;
}

::-webkit-scrollbar-thumb {
    background-color: #F97316;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #EA580C;
}

/* App Store Buttons */
.app-store-button {
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-store-button:active {
    transform: translateY(0);
} 