 *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    body{ 
        font-family:'Montserrat',sans-serif;
    }

    :root {
    /* Individual Gold Colors from Figma Stops */
    --gold-dark-1: #BA8843;  /* 0% stop */
    --gold-mid-1: #DEC368;   /* 30% stop */
    --gold-light: #F6E37A;   /* 68% stop */
    --gold-dark-2: #A76A31;  /* 100% stop */

    /* The Full Linear Gradient for backgrounds */
    --gold-gradient: linear-gradient(
        90deg, 
        #BA8843 0%, 
        #DEC368 30%, 
        #F6E37A 68%, 
        #A76A31 100%
    );
}

    /* ================= HEADER ================= */

    .main-header{
        width:100%;
        position:sticky;
        top:0;
        z-index:999;
    }

    /* ================= TOP BAR ================= */

    .topbar{
        background:#ececec;
        border-bottom:1px solid #ffffff;
        height:40px;
        display:flex;
        align-items:center;
    }

    .topbar-container{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 28px;
        position:relative;
    }

    .top-left,
    .top-right{
        display:flex;
        align-items:center;
        gap:35px;
    }

    .top-item{
        display:flex;
        align-items:center;
        gap:6px;
        font-size:11px;
        font-weight:600;
        color:#111;
        white-space:nowrap;
        letter-spacing:0.3px;
        cursor:pointer;
    }

    .top-item svg{
        width:15px;
        height:15px;
    }

    .top-divider{
        position:absolute;
        left:50%;
        top:0;
        transform:translateX(-50%);
        width:1px;
        height:40px;
        border-left:1px dashed #59a8ff;
    }

    
    /* ================= OFFER SECTION FIX ================= */

.top-right{
    display:flex;
    align-items:center;
    gap:25px;
    width:72%;
}

/* OFFER WRAPPER */
.offer-wrapper{
    flex:1;
    overflow:hidden;
    position:relative;
    height:20px;
}

/* MARQUEE */
.offer-marquee{
    display:flex;
    align-items:center;
    width:max-content;
    animation:marquee 25s linear infinite;
}

/* OFFER ITEM */
.offer-item{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    font-size:11px;
    font-weight:600;
    color:#111;
    padding-right:120px;
    min-width:max-content;
}

/* ICON */
.offer-item svg{
    width:14px;
    height:14px;
    color:#ff2d2d;
    flex-shrink:0;
}

/* ANIMATION */
@keyframes marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

    /* ================= NAVBAR ================= */
 
    .navbar{
        height:110px;
        display:flex;
        align-items:center;
        background: #fff;

    }

    .navbar-container{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding: 0 5%;
        background: #000;
        height: 100px;
        margin-top: -10px;
        
        
    }

    /* ================= LOGO ================= */

    .logo-box{
        /* display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        cursor:pointer; */
        display: flex;
    flex-direction: column;
    align-items: center; /* Center align pannunga logo and text-ah */
    cursor: pointer;
    }

    .logo-box img{
        width:120px;
        object-fit:contain;
    }

    .logo-box span{
        color:#fff;
        font-size:10px;
        font-weight:700;
        margin-top:2px;
        letter-spacing:1px;
        text-transform: uppercase;
    }

    /* ================= MENU ================= */

    .desktop-menu{
        display:flex;
        align-items:end;
        gap:25px;
        list-style:none;
        margin-left:auto;   /* menu right ku pogum */
        margin-right:40px;
    }

   .desktop-menu li{
    font-size:16px;
    font-weight:0; 
    line-height:auto;
    letter-spacing:0%;
    color: #929292;
    cursor:pointer;
    transition:0.3s;
    font-family:'Inter',sans-serif;
}

    .desktop-menu li:hover{
        color:#d4af37;
        font-weight:700; 
    }

    /* ================= BUTTON ================= */

    .booking-btn{
        width:fit-content;
        height:45px;
        border:none;
        border-radius:6px;
        background:#FF0000;
        color:#fff;
        font-size:12px;
        font-weight:700;
        cursor:pointer;
        transition:0.3s;
        letter-spacing:1.6px;
        font-family:'manrope',sans-serif;
        padding:10px;
    }

    .booking-btn:hover{
        background:var(--gold-gradient);
        color:#000;
       
    }

.desktop-menu li a,
.mobile-menu li a{
    text-decoration:none;
    color:white;
    transition:0.3s ease;
    position:relative;
}

/* Hover Effect */
/* .desktop-menu li a:hover,
.mobile-menu li a:hover{
    color:#d4af37;
} */

.desktop-menu li a:hover,
.mobile-menu li a:hover {
    /* 1. Apply your specific gold gradient variable */
    background: var(--gold-gradient);

    /* 2. Clip the gradient to the text shape */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Use transparent to reveal the gradient */
    color: transparent !important;

    /* 4. Smooth transition for the hover effect */
    transition: all 0.3s ease;
    
    /* 5. Optional: Slight scale up to add "Luxury" feel */
    /* transform: scale(1.05);
    display: inline-block;  */
}

/* Active Menu */
/* .active-menu{
    color:#d4af37 !important;
} */

.active-menu {
    background: var(--gold-gradient);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent !important;

    font-weight: 700;  */
    display: inline-block; 
}

/* Optional Underline */
/* .active-menu::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:100%;
    height:2px;
    background:#d4af37;
} */

.desktop-menu li a.active-menu:hover,
.mobile-menu li a.active-menu:hover {
    background: none !important; 
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #DEC368 !important; 
    font-weight: 700;
}

    /* ================= MOBILE ================= */

    .mobile-btn{
        display:none;
        background:none;
        border:none;
        color:#fff;
        cursor:pointer;
    }

    .mobile-menu{
        display:none;
    }
    
    .mobile-booking-li {
    list-style: none !important;
    margin-top: 25px !important; 
    padding: 0 10px !important;  
    width: 100% !important;
    box-sizing: border-box !important;
}
    /* ================= RESPONSIVE ================= */

    @media(max-width:991px){

        .topbar{
            display:none;
        }

        .desktop-menu,
        .booking-btn{
            display:none;
        }

        .mobile-btn{
            display:block;
        }

        .navbar{
            
        height:78px;
        }

        .navbar-container{
            padding:0 20px;
            
        height: 75px;
        }

        .logo-box img{
            width:62px;
        }

        .logo-box span{
            font-size:8px;
        }

        .mobile-menu{
            display:block;
            background:#000;
            max-height:0;
            overflow:hidden;
            transition:0.4s;
        }

        .mobile-menu.active{
            max-height:600px;
        }

        .mobile-menu ul{
            list-style:none;
            padding:20px;
        }

        .mobile-menu ul li{
            color:#fff;
            font-size:14px;
            font-weight:600;
            margin-bottom:18px;
            cursor:pointer;
        }

        .mobile-booking-li .booking-btn {
        display: block !important;   
        width: 100% !important;      
        height: 48px !important;      
        background: #FF0000 !important; 
        color: #ffffff !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 1.6px !important;
        text-transform: uppercase !important;
        text-align: center !important;
        padding: 0 !important;
        border: none !important;
        cursor: pointer !important;
        transition: 0.3s ease !important;
    }
    .mobile-booking-li .booking-btn:hover {
        background: var(--gold-gradient) !important;
        color: #000000 !important;
    }

    }

 @media(max-width:1228px){

    .desktop-menu{
        gap:20px;
    }

    .desktop-menu li{
        font-size:12px;
    }

    .booking-btn{
        font-size:10px;
        padding:6px;
    }

 
    .logo-box img{
        width:90px;
    }

     .top-left,
    .top-right{
        gap:25px;
    }

    .top-right{
    width:62%;
}

.offer-item{
    padding-right:90px;
}
    }

    
