
/* Header Styles */
.header {
    background: var(--fg) !important;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--fg) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 0.5rem 0;
}

    .header-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-blue-deep) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

    .logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
    }

    .nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            transition: color 0.3s ease;
        }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, var(--light-blue-deep), var(--light-orange-deep));
                transition: width 0.3s ease;
            }

            .nav-links a:hover,
            .nav-links a.active {
                color: white;
            }

                .nav-links a:hover::after,
                .nav-links a.active::after {
                    width: 100%;
                }

    .nav-cta {
        display: flex;
        gap: 1rem;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-family: 'Source Sans 3', sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: var(--radius);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--light-orange) 0%, var(--accent) 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
    }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
        }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--light-blue-deep);
        color: var(--fg);
    }

        .btn-outline:hover {
            background: var(--light-blue);
        }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

    .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: white !important;
    }

    .dropdown-menu {
        background: var(--fg);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
    }

    .dropdown-item a {
        color: inherit;
        text-decoration: none;
    }
