/*==========================================================
 GOURMET KREYOL
 Premium Food Truck Website
==========================================================*/


/*==========================================================
 GOOGLE FONTS
==========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');


/*==========================================================
 ROOT VARIABLES
==========================================================*/

:root{

    --bg:#070707;

    --surface:#111111;

    --surface2:#181818;

    --white:#ffffff;

    --text:#bcbcbc;

    --border:rgba(255,255,255,.08);

    --cyan:#36D7E8;

    --pink:#FF5FA8;

    --gradient:
    linear-gradient(
        135deg,
        var(--cyan),
        var(--pink)
    );

    --radius:26px;

    --shadow:
    0 30px 80px rgba(0,0,0,.45);

    --transition:.35s ease;

}



/*==========================================================
 RESET
==========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--white);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

    line-height:1.7;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

ul{

    list-style:none;

}



/*==========================================================
 CONTAINER
==========================================================*/

.container{

    width:min(1200px,92%);

    margin:auto;

}



/*==========================================================
 SECTIONS
==========================================================*/

section{

    padding:120px 0;

}



/*==========================================================
 TYPOGRAPHY
==========================================================*/

h1,
h2,
h3{

    font-family:'Playfair Display',serif;

    line-height:1.08;

    font-weight:700;

}

h1{

    font-size:clamp(3.5rem,6vw,5.8rem);

    letter-spacing:-2px;

}

h2{

    font-size:clamp(2.4rem,4vw,4rem);

    margin-bottom:20px;

}

h3{

    font-size:30px;

}

p{

    color:var(--text);

    font-size:18px;

}



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

.section-header{

    max-width:760px;

    margin:auto auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-block;

    color:var(--cyan);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:12px;

    margin-bottom:18px;

    font-weight:600;

}

.section-header p{

    margin-top:20px;

}



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

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 34px;

    border-radius:999px;

    background:var(--gradient);

    color:#000;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:

    0 18px 45px rgba(255,95,168,.30);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:58px;

    padding:0 34px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.10);

    color:white;

    transition:var(--transition);

}

.btn-secondary:hover{

    border-color:var(--cyan);

    color:var(--cyan);

}



/*==========================================================
 LOADER
==========================================================*/

#pageLoader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999999;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:90px;

    margin:auto auto 25px;

}

.loader-content h2{

    margin-bottom:8px;

}

.loader-line{

    width:280px;

    height:5px;

    background:#181818;

    border-radius:999px;

    overflow:hidden;

    margin:30px auto 0;

}

.loader-line span{

    display:block;

    width:0;

    height:100%;

    background:var(--gradient);

}



/*==========================================================
 NAVBAR
==========================================================*/

.navbar{

    position:fixed;

    top:0;

    width:100%;

    z-index:1000;

    transition:.35s;

}

.navbar.scrolled{

    backdrop-filter:blur(18px);

    background:rgba(7,7,7,.88);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav-wrapper{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:58px;

}

.logo span{

    font-family:'Playfair Display',serif;

    font-size:26px;

}

nav ul{

    display:flex;

    gap:36px;

}

nav a{

    color:#d7d7d7;

    transition:.3s;

}

nav a:hover{

    color:var(--cyan);

}

.reserve-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:999px;

    background:var(--gradient);

    color:#000;

    font-weight:700;

    transition:.35s;

}

.reserve-btn:hover{

    transform:translateY(-3px);

}
/*==========================================================
 HERO
==========================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:120px;

}



/*=========================================
BACKGROUND LIGHTING
=========================================*/

.hero-gradient{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 85% 25%,
    rgba(54,215,232,.10),
    transparent 30%),

    radial-gradient(circle at 10% 80%,
    rgba(255,95,168,.05),
    transparent 35%);

    pointer-events:none;

}



/*=========================================
GRID
=========================================*/

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}



/*=========================================
LEFT
=========================================*/

.hero-content{

    max-width:620px;

}

.hero-tag{

    display:inline-block;

    margin-bottom:22px;

    color:var(--cyan);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:12px;

    font-weight:600;

}

.hero-content h1{

    margin-bottom:28px;

    max-width:700px;

}

.hero-content p{

    font-size:20px;

    margin-bottom:42px;

    max-width:560px;

}



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

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

    flex-wrap:wrap;

}



/*=========================================
HIGHLIGHTS
=========================================*/

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.hero-highlights span{

    padding:12px 18px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

    color:#d9d9d9;

    font-size:14px;

}



/*=========================================
RIGHT IMAGE
=========================================*/

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    border-radius:32px;

    box-shadow:var(--shadow);

    animation:floatTruck 6s ease-in-out infinite;

}



/*=========================================
IMAGE GLOW
=========================================*/

.image-glow{

    position:absolute;

    inset:-40px;

    background:

    radial-gradient(circle,
    rgba(54,215,232,.14),
    transparent 65%);

    z-index:-1;

}



/*=========================================
FLOATING CARD
=========================================*/

.hero-card{

    position:absolute;

    bottom:30px;

    left:-40px;

    width:250px;

    padding:24px;

    border-radius:24px;

    backdrop-filter:blur(25px);

    background:rgba(17,17,17,.88);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow);

}

.hero-card span{

    color:var(--cyan);

    font-size:11px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.hero-card h3{

    margin:14px 0 10px;

    font-size:28px;

}

.hero-card p{

    font-size:15px;

    margin-bottom:18px;

}

.hero-card-btn{

    color:var(--pink);

    font-weight:600;

}



/*=========================================
SCROLL
=========================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:28px;

    transform:translateX(-50%);

    width:34px;

    height:58px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:999px;

    display:flex;

    justify-content:center;

    padding-top:10px;

}

.scroll-down span{

    width:6px;

    height:6px;

    background:var(--cyan);

    border-radius:50%;

    animation:scrollMove 2s infinite;

}



/*=========================================
ANIMATIONS
=========================================*/

@keyframes floatTruck{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes scrollMove{

    0%{

        opacity:1;

        transform:translateY(0);

    }

    100%{

        opacity:0;

        transform:translateY(20px);

    }

}



/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1000px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

gap:60px;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-highlights{

justify-content:center;

}

.hero-card{

position:relative;

left:0;

bottom:auto;

margin:30px auto 0;

}

}

@media(max-width:768px){

.hero{

padding:160px 0 90px;

min-height:auto;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

}

.hero-content h1{

font-size:3rem;

}

.hero-content p{

font-size:17px;

}

.scroll-down{

display:none;

}

}

/*==========================================================
WHY GOURMET KREYOL
==========================================================*/

.experience-section{

    background:#0a0a0a;

    position:relative;

    overflow:hidden;

}

.experience-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    top:-250px;

    right:-250px;

    border-radius:50%;

    background:rgba(54,215,232,.05);

    filter:blur(120px);

}

.experience-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}



/*==========================================================
FEATURE CARD
==========================================================*/

.experience-card{

    position:relative;

    background:rgba(18,18,18,.92);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:42px;

    transition:.4s ease;

    overflow:hidden;

}

.experience-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:var(--gradient);

    transform:scaleX(0);

    transition:.35s;

}

.experience-card:hover{

    transform:translateY(-10px);

    border-color:rgba(54,215,232,.20);

    box-shadow:0 35px 80px rgba(0,0,0,.45);

}

.experience-card:hover::before{

    transform:scaleX(1);

}



/*==========================================================
ICON
==========================================================*/

.experience-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:28px;

    background:linear-gradient(

        135deg,

        rgba(54,215,232,.15),

        rgba(255,95,168,.12)

    );

}



/*==========================================================
TEXT
==========================================================*/

.experience-card h3{

    margin-bottom:18px;

}

.experience-card p{

    color:var(--text);

}



/*==========================================================
PACKAGES
==========================================================*/

.packages-section{

    background:#070707;

}

.packages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:70px;

}



/*==========================================================
PACKAGE CARD
==========================================================*/

.package-card{

    position:relative;

    background:var(--surface);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:42px;

    transition:.35s;

    overflow:hidden;

}

.package-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        rgba(54,215,232,.05),

        transparent

    );

    opacity:0;

    transition:.35s;

}

.package-card:hover{

    transform:translateY(-12px);

    border-color:rgba(54,215,232,.20);

    box-shadow:var(--shadow);

}

.package-card:hover::before{

    opacity:1;

}



/*==========================================================
FEATURED
==========================================================*/

.featured{

    border:2px solid var(--cyan);

    transform:scale(1.03);

}

.featured:hover{

    transform:translateY(-12px) scale(1.03);

}

.popular-badge{

    position:absolute;

    top:22px;

    right:22px;

    padding:8px 14px;

    border-radius:999px;

    background:var(--gradient);

    color:#000;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

}



/*==========================================================
PACKAGE CONTENT
==========================================================*/

.package-tier{

    color:var(--cyan);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:11px;

    font-weight:600;

}

.package-card h3{

    margin:18px 0;

    font-size:34px;

}

.package-card p{

    margin-bottom:28px;

}

.package-card ul{

    margin-bottom:35px;

}

.package-card li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    color:#d8d8d8;

}

.package-card li::before{

    content:"✓";

    color:var(--cyan);

    font-weight:bold;

}

.package-btn{

    width:100%;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:999px;

    background:var(--gradient);

    color:#000;

    font-weight:700;

    transition:.35s;

}

.package-btn:hover{

    transform:translateY(-3px);

}

.package-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:55px;

    flex-wrap:wrap;

}



/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1000px){

.experience-grid{

grid-template-columns:1fr;

}

.packages-grid{

grid-template-columns:1fr;

max-width:650px;

margin:70px auto 0;

}

.featured{

transform:none;

}

.featured:hover{

transform:translateY(-10px);

}

}

@media(max-width:768px){

.experience-card,

.package-card{

padding:32px;

}

.package-actions{

flex-direction:column;

}

.package-actions .btn-secondary{

width:100%;

}

}

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

.gallery{

    background:#0a0a0a;

    position:relative;

    overflow:hidden;

}

.gallery::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-250px;

    bottom:-250px;

    border-radius:50%;

    background:rgba(255,95,168,.05);

    filter:blur(140px);

}

.gallery-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    grid-template-rows:320px 320px;

    gap:22px;

}

.gallery-item{

    overflow:hidden;

    border-radius:30px;

    background:#111;

    position:relative;

}

.gallery-item.large{

    grid-row:span 2;

}

.gallery-item.wide{

    grid-column:span 2;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}



/*==========================================================
FINAL CTA
==========================================================*/

.final-cta{

    position:relative;

    background:#070707;

    text-align:center;

    overflow:hidden;

}

.final-cta::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-250px;

    top:-250px;

    border-radius:50%;

    background:rgba(54,215,232,.08);

    filter:blur(140px);

}

.final-cta::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    left:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,95,168,.08);

    filter:blur(120px);

}

.final-cta .container{

    position:relative;

    z-index:2;

}

.final-cta span{

    color:var(--pink);

    letter-spacing:5px;

    text-transform:uppercase;

    font-size:12px;

    font-weight:600;

}

.final-cta h2{

    margin:22px auto;

    max-width:700px;

}

.final-cta p{

    max-width:650px;

    margin:auto auto 40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.final-cta small{

    display:block;

    margin-top:22px;

    color:#8c8c8c;

}



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

footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    padding:90px 0;

}

.footer-logo{

    width:80px;

    margin-bottom:18px;

}

.footer-brand p{

    max-width:320px;

}

footer h4{

    margin-bottom:20px;

}

footer a,

.footer-link{

    display:block;

    margin-bottom:14px;

    color:#cfcfcf;

    transition:.3s;

    background:none;

    border:none;

    padding:0;

    text-align:left;

    cursor:pointer;

}

footer a:hover,

.footer-link:hover{

    color:var(--cyan);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.06);

    padding:25px;

    text-align:center;

    color:#777;

    font-size:14px;

}



/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1000px){

.gallery-grid{

grid-template-columns:1fr;

grid-template-rows:auto;

}

.gallery-item.large,

.gallery-item.wide{

grid-column:auto;

grid-row:auto;

}

.gallery-item{

height:320px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.footer-brand p{

margin:auto;

}

footer a,

.footer-link{

text-align:center;

}

}

@media(max-width:768px){

.cta-buttons{

flex-direction:column;

}

.cta-buttons a,

.cta-buttons button{

width:100%;

}

}

/*==========================================================
MODALS
==========================================================*/

.modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:25px;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(12px);

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:9999;

}

.modal.active{

    opacity:1;

    visibility:visible;

}

.modal-content{

    position:relative;

    width:min(900px,100%);

    max-height:85vh;

    overflow-y:auto;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:50px;

    transform:translateY(40px);

    transition:.35s ease;

    box-shadow:0 40px 90px rgba(0,0,0,.45);

}

.modal.active .modal-content{

    transform:translateY(0);

}

.modal-large{

    width:min(1100px,95%);

}

.close-modal{

    position:absolute;

    right:24px;

    top:20px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1a1a1a;

    color:#fff;

    font-size:22px;

    transition:.3s;

}

.close-modal:hover{

    background:var(--gradient);

    color:#000;

}

.modal-tag{

    display:inline-block;

    margin-bottom:18px;

    color:var(--cyan);

    font-size:12px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

}

.modal-body{

    margin-top:30px;

}

.policy-item{

    margin-bottom:28px;

}

.policy-item h3{

    margin-bottom:8px;

    font-size:22px;

}

.modal-footer{

    margin-top:40px;

    display:flex;

    justify-content:flex-end;

}



/*==========================================================
COMPARISON TABLE
==========================================================*/

.comparison-table{

    margin-top:35px;

    overflow-x:auto;

}

.comparison-table table{

    width:100%;

    border-collapse:collapse;

    min-width:720px;

}

.comparison-table th{

    background:#171717;

    padding:18px;

    text-align:left;

    font-size:15px;

}

.comparison-table td{

    padding:18px;

    border-top:1px solid rgba(255,255,255,.06);

    color:#d8d8d8;

}

.comparison-table tr:hover{

    background:#151515;

}



/*==========================================================
TERMS LINKS
==========================================================*/

.terms-link{

    display:block;

    text-align:center;

    margin-top:18px;

    color:var(--cyan);

    font-size:14px;

    transition:.3s;

}

.terms-link:hover{

    color:var(--pink);

}



/*==========================================================
REVEAL ANIMATION
==========================================================*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:1s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}



/*==========================================================
CUSTOM SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#070707;

}

::-webkit-scrollbar-thumb{

    background:#2b2b2b;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gradient);

}



/*==========================================================
MOBILE
==========================================================*/

@media(max-width:768px){

.modal-content{

padding:30px 22px;

}

.modal-footer{

justify-content:center;

}

.modal-footer .btn-primary{

width:100%;

}

.comparison-table{

font-size:14px;

}

}

.nav-links a.active{

    color:var(--cyan);

}

.nav-links a.active::after{

    width:100%;

}