/* Base header styling */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

/* Header container */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-img {
    height: 100px;
}

/* Desktop navigation */
.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
}

/* CTA button */
.header-cta,
.cta-btn {
    background: #d6008f;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.header-cta:hover,
.cta-btn:hover {
    background: #b00078;
}


/* Three-column layout */
.header-left,
.main-nav,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
}

.main-nav {
    justify-content: center;
}

.header-right {
    justify-content: flex-end;
    gap: 15px;
}

/* Hamburger button (mobile only by default) */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: #000;
    border-radius: 2px;
}

/* Mobile slide-out menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 6px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    padding: 20px;
    z-index: 9998;
}

.mobile-menu.open {
    right: 0;
}

/* Hamburger animation */
.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE ONLY (default) */
.main-nav {
    display: none; /* hide desktop nav */
}

/* Fixed header on mobile */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

body {
    padding-top: 90px;
}

/* DESKTOP (≥900px) */
@media (min-width: 900px) {



    /* Show desktop nav */
    .main-nav {
        display: flex;
    }

    /* Hide hamburger + mobile menu */
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    /* Desktop header not fixed */
    .site-header {
        position: relative;
        box-shadow: none;
    }

    body {
        padding-top: 0;
    }
}
.mobile-menu {
    right: -260px; /* fully hidden */
    width: 220px;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    display: block;
    background: #d6008f; /* your pink */
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
}

.mobile-menu a:hover {
    background: #b00078;
}

@media (max-width: 899px) {
    .header-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
}

/* Desktop nav buttons */
@media (min-width: 900px) {
    .main-nav a {
        white-space: nowrap;
        display: inline-block;
        background: #d6008f;
        color: #fff;
        padding: 10px 16px;
        border-radius: 6px;
        font-weight: 700;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .main-nav a:hover {
        background: #b00078;
    }

    .main-nav ul {
        gap: 15px;
    }
}


