/* ===== BWINDI BREEZE LODGE - COMPLETE WORKING CSS ===== */
:root {
    --gold: #C6A43F;
    --gold-dark: #A8862C;
    --gold-light: #DBB86B;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --font-primary: 'Poppins', sans-serif;
    --header-height: 80px;
    --container-width: 1200px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

/* ===== DESKTOP NAVIGATION - ADD THIS ===== */
@media (min-width: 769px) {
    .nav-desktop {
        display: flex !important;
    }
    
    .nav-menu {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        color: var(--gray-700);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color 0.3s;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s;
    }
    
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--gold);
    }
    
    /* Dropdown Menu */
    .nav-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s;
        list-style: none;
        z-index: 100;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu a {
        display: block;
        padding: 0.5rem 1.5rem;
        color: var(--gray-700);
    }
    
    .dropdown-menu a::after {
        display: none;
    }
    
    .dropdown-menu a:hover {
        background: rgba(198, 164, 63, 0.1);
        color: var(--gold);
        padding-left: 2rem;
    }
}



/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.currency-toggle {
    display: flex;
    background: var(--gray-200);
    border-radius: 50px;
    padding: 0.25rem;
}

.currency-option {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}

.currency-option.active {
    background: var(--gold);
    color: white;
}

/* Hamburger Menu - Hidden on Desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

/* Mobile Navigation - Hidden on Desktop */
.nav-mobile {
    display: none;
}

/* ===== MOBILE MENU (ONLY ACTIVE ON SMALL SCREENS) ===== */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-desktop {
        display: none !important;
    }
    
    /* Show hamburger */
    .menu-toggle {
        display: flex !important;
    }
    
    /* Animated hamburger when open */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile menu panel - FULL SCREEN */
    .nav-mobile {
        display: block !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-mobile.active {
        transform: translateX(0);
    }
    
    /* Mobile menu items */
    .nav-mobile .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
    }
    
    .nav-mobile .nav-menu li {
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-mobile .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--gray-800);
        text-decoration: none;
    }
    
    .nav-mobile .nav-menu a:hover,
    .nav-mobile .nav-menu a.active {
        color: var(--gold);
    }
    
    /* Book Now button in mobile menu */
    .nav-mobile .nav-menu .btn-primary {
        background: var(--gold);
        color: white;
        text-align: center;
        border-radius: 50px;
        margin-top: 1rem;
        padding: 0.75rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 700px;
}

.hero-content h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--gold);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 3;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* ===== ROOMS GRID ===== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.room-content {
    padding: 1.5rem;
}

.room-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.room-rating {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.room-rating span {
    color: var(--gray-500);
    margin-left: 0.5rem;
}

.room-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.room-amenities span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.room-amenities i {
    color: var(--gold);
    margin-right: 0.25rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.per-night {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== BOOKING PAGE ===== */
.booking-container {
    max-width: var(--container-width);
    margin: calc(var(--header-height) + 2rem) auto 4rem;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.booking-form, .booking-summary {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.room-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-option {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.room-option.selected {
    border-color: var(--gold);
    background: rgba(198, 164, 63, 0.05);
}

.room-option h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.room-option-price {
    font-size: 1.25rem;
    font-weight: 600;
}

.payment-methods {
    margin: 1.5rem 0;
}

.payment-method {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.payment-method-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: var(--white);
}

.payment-method.selected .payment-method-header {
    background: rgba(198, 164, 63, 0.05);
    border-bottom: 1px solid var(--gold);
}

.payment-details {
    display: none;
    padding: 1rem;
    background: var(--gray-100);
}

.payment-method.selected .payment-details {
    display: block;
}

.payment-method-header img {
    height: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== CONTACT BAR ===== */
.contact-bar {
    background: var(--gold);
    color: white;
    padding: 0.75rem 0;
}

.contact-bar-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: var(--gray-400);
    text-decoration: none;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem 20px 0;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons img {
    height: 25px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
        margin-top: calc(var(--header-height) + 1rem);
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .room-selector {
        grid-template-columns: 1fr;
    }
    
    .contact-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}