/* --- Desktop Header & Menu --- */
.desktop-header {
    display: none;
    /* Hidden on Mobile/Tablet by default */
    background-color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    /* Use grid-like spacing or space-between */
    justify-content: space-between;
}

.desktop-logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-right: 40px;
    /* Space from logo to nav */
}

/* Push nav to the right, but keep hamburger at the very end */
.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    /* Pushes nav to the right */
    margin-right: 30px;
    /* Space between nav and hamburger */
}

.desktop-nav a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}

.desktop-nav a:hover {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
}

.desktop-hamburger {
    border-left: 1px solid #eee;
    padding-left: 20px;
    height: 30px;
    /* height of divider */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Mobile Header & Menu --- */
.mobile-header {
    display: flex;
    /* Visible on Mobile by default */
    background-color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Responsive Visibility Logic */
@media (min-width: 1025px) {
    .desktop-header {
        display: block;
    }

    .mobile-header {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
}

.mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-black);
    transition: 0.3s;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 250px;
    /* Drawer width */
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-overlay.active {
    right: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-logo-text-overlay {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 10px;
}

.mobile-nav a:hover {
    color: var(--color-gold);
}

.mobile-cta-btn {
    background-color: #25D366;
    /* WhatsApp Green */
    color: white !important;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border: none;
}