/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Inter;
background:#000;
color:#fff;
overflow-x:hidden;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 10%;
background:rgba(0,0,0,.9);
backdrop-filter:blur(8px);
border-bottom:1px solid #111;
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
}

nav img{
height:90px;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

.nav-links{
display:flex;
gap:30px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
transition:.3s;
}

.nav-links a:hover{
color:#d4af37;
}

/* HERO */

.hero{
min-height:100vh;
padding-top:120px;
text-align:center;

background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.7)),
url("https://images.unsplash.com/photo-1504674900247-0877df9cc836");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.hero-badge{
font-size:22px;
padding:10px 24px;
border-radius:30px;
background:#111;
border:1px solid #444;
display:inline-block;
margin-bottom:30px;
}

.hero h1{
font-size:70px;
}

.highlight{
font-family:"Playfair Display";
background:#d4af37;
color:black;
padding:2px 12px;
border-radius:6px;
}

.hero p{
max-width:700px;
margin:auto;
margin-top:20px;
opacity:.9;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:35px;
padding:14px 36px;
border-radius:30px;
background:#d4af37;
color:black;
text-decoration:none;
font-weight:600;
transition:.3s;
}

/* PRICING BUTTON FONT */

.price-card .btn{
font-family:'Inter',sans-serif;
font-size:14px;
letter-spacing:0.5px;
padding:10px 24px;
margin-top:15px;
}

.btn:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(212,175,55,.4);
}

/* DISH CAROUSEL */

.dish-carousel{
margin-top:60px;
overflow:hidden;
}

.dish-track{
display:flex;
gap:20px;
animation:scrollDish 40s linear infinite;
}

.dish-track img{
width:240px;
height:170px;
object-fit:cover;
border-radius:12px;
}

@keyframes scrollDish{
0%{transform:translateX(0)}
100%{transform:translateX(-50%)}
}

/* SECTION */

section{
padding:120px 10%;
max-width:1400px;
margin:auto;
}

/* EXCLUSIVE TALENT */

.talent-section{
text-align:center;
overflow:hidden;
position:relative;
}

.talent-title{
font-size:38px;
margin:60px 0;
}

.talent-slider{
overflow:hidden;
width:100%;
margin:30px 0;
}

.talent-track{
display:flex;
gap:20px;
width:max-content;
animation:talentScroll 35s linear infinite;
}

.slider-bottom .talent-track{
animation-direction:reverse;
}

.talent-card{
width:180px;
height:240px;
flex-shrink:0;
border-radius:12px;
overflow:hidden;
}

.talent-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.talent-card:hover img{
transform:scale(1.1);
}

@keyframes talentScroll{
0%{transform:translateX(0)}
100%{transform:translateX(-40%)}
}
/* EXCLUSIVE TALENT HEADING FIX */

.talent-section .section-heading{
margin:80px 0;
position:relative;
z-index:2;
}

/* FLOATING CONTACT BUTTONS */

.float{
position:fixed;
bottom:25px;
right:25px;
display:flex;
flex-direction:column;
gap:12px;
z-index:1000;
}

.float a{
width:48px;
height:48px;
background:rgba(0,0,0,0.85);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,0.4);
border:1px solid #222;
transition:.3s;
}

.float img{
width:22px;
height:22px;
}

.float a:hover{
transform:scale(1.1);
border-color:#d4af37;
box-shadow:0 10px 25px rgba(212,175,55,0.35);
}

/* CATEGORY GRID */

.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:50px;
}

.category-card{
height:260px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:600;
background-size:cover;
background-position:center;
text-decoration:none;
color:white;
position:relative;
overflow:hidden;
transition:.4s;
}

.category-card{
height:220px;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
font-weight:600;
font-family:'Playfair Display',serif;
background-size:cover;
background-position:center;
text-decoration:none;
color:white;
position:relative;
overflow:hidden;
transition:all .35s ease;
}

.category-card:hover{
transform:scale(1.07) translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.6),
           0 0 25px rgba(212,175,55,0.35);
}

.category-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,0.65),
rgba(0,0,0,0.2)
);
border-radius:12px;
}

.category-card span{
position:relative;
z-index:2;
letter-spacing:1px;
}

/* TESTIMONIAL CARD */

.card{
background:linear-gradient(145deg,#111,#0a0a0a);
padding:30px;
border-radius:12px;
transition:.3s;
}

.card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 12px 30px rgba(0,0,0,.6);
}

/* PRICING */

.pricing{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:60px;
}

.price-card{
background:#111;
padding:28px;
border-radius:12px;
text-align:center;
position:relative;
transition:.3s;
}

/* HIGHLIGHT MOST POPULAR CARD */

.price-card:nth-child(2){
border:2px solid #d4af37;
transform:scale(1.05);
box-shadow:0 10px 30px rgba(212,175,55,0.25);
}

.price-card h3{
font-family:'Playfair Display',serif;
font-size:22px;
margin-bottom:6px;
}

.price-card p{
font-family:'Inter',sans-serif;
font-size:14px;
line-height:1.6;
opacity:.85;
margin:3px 0;
}

.price-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,.5);
}

.price{
font-size:30px;
color:#d4af37;
margin:8px 0;
font-family:'Playfair Display',serif;
font-weight:700;
}

.popular{
position:absolute;
top:-12px;
right:-12px;
background:#d4af37;
color:black;
padding:6px 12px;
border-radius:20px;
font-size:12px;
font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#000;
flex-direction:column;
align-items:center;
gap:20px;
padding:20px 0;
display:none;
}

.nav-links.active{
display:flex;
}

.hero h1{
font-size:42px;
}

section{
padding:80px 6%;
}

.talent-card{
width:140px;
height:190px;
}

.grid{
grid-template-columns:1fr;
}

.pricing{
grid-template-columns:1fr;
}

.dish-track img{
width:180px;
height:130px;
}

}
/* PREMIUM FOOTER */

.footer{
background:#050505;
padding:90px 10% 40px;
border-top:1px solid #1a1a1a;
margin-top:120px;
position:relative;
}

/* glow divider */

.footer::before{
content:"";
position:absolute;
top:0;
left:50%;
transform:translateX(-50%);
width:450px;
height:1px;
background:linear-gradient(to right,transparent,#d4af37,transparent);
}

/* layout */

.footer-content{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:50px;
margin-bottom:40px;
}

/* brand */

.footer-brand p{
opacity:.8;
line-height:1.6;
margin-top:10px;
}

/* headings */

.footer h3{
font-family:'Playfair Display',serif;
font-size:24px;
margin-bottom:10px;
color:#d4af37;
}

.footer h4{
font-size:16px;
margin-bottom:15px;
letter-spacing:1px;
color:#d4af37;
}

/* links */

.footer a{
display:inline-block;
margin-bottom:8px;
color:#ddd;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.footer a:hover{
color:#d4af37;
transform:translateX(3px);
}

/* social icons */

.footer-social{
margin-top:15px;
display:flex;
gap:15px;
}

.footer-social img{
width:22px;
height:22px;
filter:grayscale(1);
transition:.3s;
}

.footer-social img:hover{
filter:none;
transform:scale(1.15);
}

/* copyright */

.copyright{
text-align:center;
font-size:13px;
opacity:.6;
border-top:1px solid #1a1a1a;
padding-top:20px;
}

/* CATEGORY HEADING */

.category-heading{
text-align:center;
font-size:48px;
font-family:'Playfair Display',serif;
letter-spacing:1px;
margin-bottom:10px;
}

.category-heading span{
color:#d4af37;
}

/* underline highlight */

.category-heading::after{
content:"";
display:block;
width:90px;
height:3px;
background:#d4af37;
margin:14px auto 40px;
border-radius:2px;
}
/* REMOVE LARGE SIDE MARGINS FOR CATEGORY GRID */

.categories-section{
padding:120px 5%;
max-width:1600px;
}

/* EXPLORE CATEGORY HEADING */

.category-heading{
text-align:center;
font-size:52px;
font-family:'Playfair Display', serif;
font-weight:700;
letter-spacing:1px;
margin-bottom:15px;
}

.category-heading span{
color:#d4af37;
}

/* stylish underline */

.category-heading::after{
content:"";
display:block;
width:110px;
height:3px;
background:#d4af37;
margin:16px auto 50px;
border-radius:2px;
}
/* GLOBAL SECTION HEADINGS */

.section-heading{
text-align:center;
font-size:52px;
font-family:'Playfair Display', serif;
font-weight:700;
letter-spacing:1px;
margin-bottom:15px;
}

.section-heading span{
color:#d4af37;
}

.section-heading::after{
content:"";
display:block;
width:110px;
height:3px;
background:#d4af37;
margin:16px auto 50px;
border-radius:2px;
}

/* TESTIMONIAL SECTION */

.testimonials-section{
padding:120px 10%;
}

.testimonial-subtext{
text-align:center;
max-width:720px;
margin:10px auto 60px;
opacity:.85;
font-size:16px;
line-height:1.8;
}

.testimonials{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.testimonial-card{
background:#111;
padding:28px;
border-radius:12px;
border:1px solid #222;
transition:.3s;
}

.testimonial-card:hover{
transform:translateY(-6px);
border-color:#d4af37;
box-shadow:0 12px 30px rgba(212,175,55,0.25);
}

.testimonial-card h4{
margin-bottom:6px;
font-family:'Playfair Display',serif;
}

.testimonial-card p{
font-size:14px;
line-height:1.6;
opacity:.85;
}

/* CENTER BOOK SLOT BUTTON */

.slot-btn{
display:flex;
justify-content:center;
margin-top:35px;
}

/* FAQ PAGE */

.faq-container{
margin-top:60px;
}

.faq-item{
margin-bottom:35px;
padding-bottom:25px;
border-bottom:1px solid #222;
}

.faq-item h3{
font-family:'Playfair Display',serif;
font-size:22px;
margin-bottom:10px;
}

.faq-item p{
opacity:.85;
line-height:1.7;
}

/* GLOBAL CHEF COMMUNITY SECTION */

.chef-community{
text-align:center;
padding:120px 10% 100px;
max-width:850px;
margin:auto;
}

.community-subtext{
margin-top:15px;
font-size:18px;
line-height:1.7;
opacity:.85;
font-family:'Inter',sans-serif;
margin-bottom:5px;
}

/* STATS SECTION */

.stats{
padding:110px 10%;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;
}

.stat-box{
background:#111;
padding:40px 25px;
border-radius:12px;
border:1px solid #222;
transition:.3s;
}

.stat-box:hover{
transform:translateY(-8px);
border-color:#d4af37;
box-shadow:0 15px 35px rgba(212,175,55,0.25);
}

.stat-box h2{
font-size:42px;
font-family:'Playfair Display',serif;   /* same heading font */
color:#d4af37;
margin-bottom:8px;
}

.stat-box p{
font-size:14px;
letter-spacing:1px;
opacity:.8;
font-family:'Inter',sans-serif;
}

/* ============================= */
/* MOBILE RESPONSIVE DESIGN */
/* ============================= */

@media (max-width:768px){

/* NAVBAR */

nav{
padding:10px 6%;
}

nav img{
height:65px;
}

.nav-links{
display:none;
}

/* HERO SECTION */

.hero{
padding-top:140px;
}

.hero h1{
font-size:36px;
line-height:1.2;
}

.hero p{
font-size:14px;
padding:0 10px;
}

.hero-badge{
font-size:16px;
padding:8px 16px;
}

/* DISH CAROUSEL */

.dish-track img{
width:170px;
height:120px;
}

/* SECTION SPACING */

section{
padding:80px 6%;
}

/* CATEGORY GRID */

.grid{
grid-template-columns:1fr;
gap:20px;
}

/* STATS */

.stats-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.stat-box{
padding:30px 20px;
}

.stat-box h2{
font-size:34px;
}

/* TESTIMONIALS */

.testimonials{
grid-template-columns:1fr;
}

/* PRICING */

.pricing{
grid-template-columns:1fr;
gap:20px;
}

.price-card{
padding:25px;
}

/* EXCLUSIVE TALENT */

.talent-card{
width:120px;
height:170px;
}

/* CTA SECTION */

.community-subtext{
font-size:15px;
}

/* FOOTER */

.footer{
padding:70px 6% 30px;
}

.footer-content{
grid-template-columns:1fr;
gap:30px;
}

/* FLOAT BUTTONS */

.float{
bottom:20px;
right:20px;
}

}