/* ==========================================
   ONE STOP DRIVE-IN
   GLOBAL STYLES
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fafafa;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:92%;
    max-width:1300px;
    margin:auto;
}

/* ==========================================
   BUTTONS
========================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 32px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
    cursor:pointer;
}

.btn-primary{
    background:#d4af37;
    color:#111;
}

.btn-primary:hover{
    background:#b99220;
    transform:translateY(-3px);
}

.btn-secondary{
    background:#ffffff20;
    color:#fff;
    border:2px solid rgba(255,255,255,.5);
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/* ==========================================
   SECTION TITLE
========================================== */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#d4af37;
    color:#111;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:18px;
    color:#111;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement-bar{
    background:#111;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    height:42px;
    display:flex;
    align-items:center;
}

.announcement-track{
    display:inline-block;
    padding-left:100%;
    animation:scrollNews 28s linear infinite;
    font-size:15px;
    font-weight:500;
}

@keyframes scrollNews{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-100%);
    }

}

/* ==========================================
   HEADER
========================================== */

#header{
    position:fixed;
    top:42px;
    left:0;
    width:100%;
    background:rgba(17,17,17,.92);
    backdrop-filter:blur(12px);
    z-index:9999;
    transition:.35s;
}

#header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:85px;
}

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

/* ==========================================
   NAVIGATION
========================================== */

/* Mobile Navigation */

#navbar{

    transition:.35s ease;

}

@media(max-width:768px){

#navbar{

    position:fixed;
    top:90px;
    right:-100%;
    width:280px;
    height:calc(100vh - 90px);
    background:#111;
    z-index:99999;
    overflow-y:auto;

}

#navbar.active{

    right:0;

}

#navbar ul{

    display:flex;
    flex-direction:column;
    padding:25px;

}

#navbar ul li{

    margin:15px 0;

}

#navbar ul li a{

    color:#fff;

}

}
/* ==========================================
   HEADER ACTIONS
========================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#d4af37;
    color:#111;
    font-size:18px;
    transition:.3s;
}

.header-icon:hover{
    transform:translateY(-3px);
}

/* ==========================================
   WEATHER
========================================== */

.weather-pill{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    padding:8px 14px;
    border-radius:30px;
    color:#fff;
    min-width:150px;
}

#weatherIcon{
    color:#FFD54A;
    font-size:22px;
    width:24px;
    text-align:center;
    flex-shrink:0;
}

.weather-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1.2;
}

#weatherTemp{
    font-size:18px;
    font-weight:600;
}

#weatherCondition{
    font-size:11px;
    opacity:.8;
} 
/* ==========================================
   HAMBURGER
========================================== */

.menu-btn{
    display:none;
    width:45px;
    height:45px;
    color:#fff;
    font-size:28px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    z-index:100000;
}

@media (max-width:768px){

    .menu-btn{
        display:flex !important;
    }

    #navbar{
        position:fixed;
        top:75px;
        right:-100%;
        width:280px;
        height:calc(100vh - 75px);
        background:#111;
        transition:right .3s ease;
        z-index:99999;
    }

    #navbar.active{
        right:0;
    }
}
/* ==========================================
   HERO
========================================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:-1;
}

.hero-content{
    text-align:center;
    color:#fff;
    max-width:850px;
    padding-top:120px;
}

.hero-logo{
    width:160px;
    margin:0 auto 30px;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:10px;
}

.hero h2{
    font-size:30px;
    font-weight:500;
    color:#d4af37;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ==========================================
   GRAND OFFER POPUP
========================================== */

.offer-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:100000;
    padding:20px;
}

.offer-box{
    background:#fff;
    width:90%;
    max-width:550px;
    padding:40px;
    border-radius:20px;
    position:relative;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
    animation:popupShow .4s ease;
}

@keyframes popupShow{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}
.offer-box{
    position:relative;
    overflow:visible;
}

.offer-box h2{
    color:#d4af37;
    margin-bottom:20px;
    font-size:32px;
}

.offer-box ul{
    text-align:left;
    margin:25px 0;
}

.offer-box ul li{
    margin-bottom:15px;
    font-size:18px;
    line-height:1.6;
}

.close-popup{
    position:absolute;
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:30px;
    font-weight:bold;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999999;
    pointer-events:auto;
}
.close-popup:hover{
    transform:rotate(90deg);
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:42px;
    color:#d4af37;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
}

/* ==========================================
   EV CHARGING
========================================== */

.ev-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.ev-image img{
    width:100%;
    border-radius:20px;
}

.charger-list{
    margin:30px 0;
}

.charger-list li{
    margin-bottom:18px;
    font-size:18px;
}

.charger-list i{
    color:#d4af37;
    margin-right:10px;
}

/* ==========================================
   FACILITIES
========================================== */

.facility-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.facility-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.facility-card:hover{
    transform:translateY(-6px);
}

.facility-card i{
    font-size:40px;
    color:#d4af37;
    margin-bottom:18px;
}

.facility-card h4{
    margin-bottom:10px;
}

/* ==========================================
   CAROUSELS
========================================== */

.carousel{
    position:relative;
}

.carousel-track{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding-bottom:10px;
}

.carousel-track::-webkit-scrollbar{
    display:none;
}

.carousel-slide{
    min-width:350px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.carousel-slide img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.slide-content{
    padding:25px;
}

.slide-content h3{
    margin-bottom:12px;
}

.carousel-btn{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    cursor:pointer;
    z-index:5;
    font-size:18px;
}

.carousel-btn.prev{
    left:-20px;
}

.carousel-btn.next{
    right:-20px;
}

.carousel-btn:hover{
    transform:translateY(-50%) scale(1.08);
}

/* ==========================================
   ATTRACTIONS
========================================== */

.attractions-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.attraction-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.attraction-card:hover{
    transform:translateY(-8px);
}

.attraction-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.attraction-content{
    padding:25px;
}

.attraction-info{
    display:flex;
    justify-content:space-between;
    margin-top:18px;
    color:#777;
    font-size:14px;
}

/* ==========================================
   JOURNEY
========================================== */

.journey-timeline{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.timeline-item{
    background:#fff;
    padding:25px;
    border-radius:18px;
    width:160px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.timeline-item.active{
    background:#d4af37;
    color:#111;
}

.timeline-item i{
    font-size:35px;
    margin-bottom:12px;
}

.timeline-arrow{
    font-size:24px;
    color:#d4af37;
}

/* ==========================================
   GALLERY
========================================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:16px;
    transition:.35s;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ==========================================
   REVIEWS
========================================== */

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.stars{
    color:#FFD700;
    font-size:22px;
    margin-bottom:15px;
}

/* ==========================================
   BUS BOOKING
========================================== */

.bus-booking-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.bus-image img{
    border-radius:20px;
}

.bus-content ul{
    margin:25px 0;
}

.bus-content li{
    margin-bottom:14px;
}

.bus-content i{
    color:#28a745;
    margin-right:8px;
}

/* ==========================================
   CONTACT
========================================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.contact-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-card i{
    font-size:38px;
    color:#d4af37;
    margin-bottom:15px;
}

/* ==========================================
   QR SECTION
========================================== */

.qr-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.qr-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.qr-card img{
    width:180px;
    margin:auto;
    margin-bottom:20px;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:70px 0;
}

.footer-logo{
    width:120px;
    margin:auto;
    margin-bottom:20px;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:30px 0;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.footer-social a:hover{
    transform:translateY(-4px);
}

.copyright{
    color:#bbb;
    font-size:14px;
}

/* ==========================================
   RESTAURANT MENU OVERLAY
========================================== */

.menu-overlay{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:999999;
    display:none;
    overflow-y:auto;
}

.menu-header{
    position:sticky;
    top:0;
    background:#111;
    color:#fff;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:20;
}

.close-menu{
    background:#d4af37;
    border:none;
    width:42px;
    height:42px;
    border-radius:50%;
    font-size:24px;
    cursor:pointer;
}

.menu-search{
    padding:20px;
    background:#f8f8f8;
}

.menu-search input{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:16px;
}

.menu-tabs{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:15px;
    background:#fff;
    border-bottom:1px solid #eee;
}

.menu-tabs::-webkit-scrollbar{
    display:none;
}

.tab-btn{
    border:none;
    background:#eee;
    padding:12px 18px;
    border-radius:30px;
    cursor:pointer;
    white-space:nowrap;
}

.tab-btn.active{
    background:#d4af37;
    color:#111;
}

.menu-body{
    padding:25px;
}

.category{
    display:none;
}

.active-category{
    display:block;
}

.menu-title{
    margin-bottom:25px;
    color:#111;
}

.dish{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px dashed #ddd;
}

/* ==========================================
   BACK TO TOP
========================================== */

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#111;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
}


.carousel::before{
    content:"❮";
    position:absolute;
    left:10px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(255,255,255,.6);
    font-size:40px;
    pointer-events:none;
    z-index:10;
}

.carousel::after{
    content:"❯";
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    color:rgba(255,255,255,.6);
    font-size:40px;
    pointer-events:none;
    z-index:10;
}


/* Force weather icon to display */

#weatherIcon{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    font-size:22px !important;
    color:#FFD700 !important;
    width:24px;
    min-width:24px;
    height:24px;
    opacity:1 !important;
    visibility:visible !important;
}

.weather-pill{
    display:flex !important;
    align-items:center;
    gap:10px;
}

.weather-pill i{
    display:inline-flex !important;
}