/* =========================
GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
width:100%;
overflow-x:hidden;
}

body{
font-family:'Poppins', sans-serif;
background:#0f172b;
color:white;
scrollbar-gutter:stable;
}

html{
scroll-behavior:smooth;
}

/* =========================
NAVBAR
========================= */

.custom-nav{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;

padding:18px 0;

background:rgba(0,0,0,0.45);
backdrop-filter:blur(8px);

transition:0.4s ease;

animation:fadeDown 1s ease;
}

/* navbar after scroll */

.custom-nav.scrolled{
background:#0f172b;
box-shadow:0 5px 20px rgba(0,0,0,0.4);
}

/* logo */

.logo{
font-size:28px;
font-weight:700;
color:#ff9f1c !important;
letter-spacing:1px;
}


/* NAV LINKS */

.nav-link{
color:white !important;
margin-left:25px;
font-weight:500;
transition:0.3s;
position:relative;
}

.nav-link:hover{
color:#ff9f1c !important;
transform:translateY(-2px);
}

/* underline animation */

.nav-link::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#ff9f1c;
transition:0.3s;
}

.nav-link:hover::after{
width:100%;
}


/* BOOK BUTTON */

.book-btn{
background:#ff9f1c;
color:white;
padding:10px 22px;
font-weight:600;
border:none;
border-radius:4px;
transition:0.3s;
}

.book-btn:hover{
background:#e68900;
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.25);
}



/* =========================
HERO SECTION
========================= */

.hero-section{

min-height:100vh;
display:flex;
align-items:center;

padding-top:120px;

/* background image + overlay */

background:
linear-gradient(rgba(15,23,43,0.9),rgba(15,23,43,0.9)),
url("https://images.unsplash.com/photo-1555396273-367ea4eb4db5");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

}


/* HERO TEXT */

.hero-text{
animation:slideLeft 1.2s ease;
}

.hero-text h1{
font-size:60px;
font-weight:700;
line-height:1.2;
margin-bottom:25px;
}

.hero-text p{
color:#cfcfcf;
margin-bottom:30px;
line-height:1.8;
font-size:17px;
max-width:500px;
}


/* HERO BUTTON */

.hero-btn{
background:#ff9f1c;
padding:15px 40px;
color:white;
font-weight:600;
border:none;
border-radius:4px;

transition:0.3s;

animation:fadeUp 1.6s ease;
}

.hero-btn:hover{
background:#e68900;
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}



/* HERO IMAGE */

.hero-img{

width:500px;
height:500px;

object-fit:cover;

border-radius:50%;

/* spinning animation */

animation:
spin 40s linear infinite,
zoomIn 1.4s ease;

filter:drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}



/* =========================
ANIMATIONS
========================= */


/* navbar */

@keyframes fadeDown{
from{
opacity:0;
transform:translateY(-40px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* text slide */

@keyframes slideLeft{
from{
opacity:0;
transform:translateX(-80px);
}
to{
opacity:1;
transform:translateX(0);
}
}


/* button animation */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(50px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* image zoom */

@keyframes zoomIn{
from{
opacity:0;
transform:scale(0.7);
}
to{
opacity:1;
transform:scale(1);
}
}


/* rotating food */

@keyframes spin{
0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.hero-img{
width:420px;
height:420px;
}

.hero-text h1{
font-size:50px;
}

.video-section{
height:400px;
padding:0 0 0 30px;
}

}


@media(max-width:991px){

.hero-text{
text-align:center;
margin-bottom:50px;
}

.hero-text p{
margin-left:auto;
margin-right:auto;
}

.hero-img{
width:320px;
height:320px;
}

.hero-text h1{
font-size:42px;
}

.nav-link{
margin-left:0;
margin-top:10px;
}
.video-section{
height:400px;
padding:0 0 0 30px;
}

}



@media(max-width:576px){

.hero-text h1{
font-size:34px;
}

.hero-img{
width:260px;
height:260px;
}

.hero-btn{
padding:14px 30px;
}
.video-section{
height:400px;
padding:0 0 0 30px;
}

}


/* =========================
SERVICES SECTION
========================= */

.services-section{

padding:100px 0;

background:#f1f1f1;

}


/* CARD */

.service-card{

background:white;

padding:40px 30px;

border-radius:5px;

box-shadow:0 5px 25px rgba(0,0,0,0.05);

transition:0.35s;

height:100%;

}


/* ICON */

.service-icon{

font-size:40px;

color:#ff9f1c;

margin-bottom:20px;

}


/* TITLE */

.service-card h5{

font-weight:600;

color:#0f172b;

margin-bottom:10px;

}


/* TEXT */

.service-card p{

color:#6c757d;

font-size:15px;

line-height:1.6;

}


/* HOVER EFFECT */

.service-card:hover{

background:#ff9f1c;

transform:translateY(-10px);

color:white;

}


.service-card:hover h5,
.service-card:hover p,
.service-card:hover .service-icon{

color:white;

}


/* FIRST CARD STYLE */

.active-card{

background:#ff9f1c;

color:white;

}


.active-card h5,
.active-card p,
.active-card .service-icon{

color:white;

}


/* =========================
ABOUT SECTION
========================= */

.about-section{
padding:100px 0;
background:#f8f9fa;
}


/* IMAGE GRID */

.about-images{
display:grid;
grid-template-columns:repeat(2,1fr);
grid-gap:20px;
}

.about-images img{
width:100%;
border-radius:4px;
object-fit:cover;
}

/* Image sizing similar to template */

.img1{
height:250px;
}

.img2{
height:200px;
margin-top:40px;
}

.img3{
height:200px;
}

.img4{
height:250px;
margin-top:-40px;
}


/* TEXT */

.about-text h6{

color:#ff9f1c;

font-weight:600;

margin-bottom:10px;

position:relative;

}

.about-text h6::after{

content:"";

width:50px;

height:2px;

background:#ff9f1c;

display:inline-block;

margin-left:10px;

vertical-align:middle;

}


.about-text h2{

font-size:38px;

font-weight:700;

margin-bottom:20px;

color:#0f172b;

}

.brand-icon{

color:#ff9f1c;

}

.about-text p{

color:#6c757d;

line-height:1.7;

margin-bottom:15px;

}


/* STATS */

.stats{

margin:30px 0;

}

.stat-box{

border-left:5px solid #ff9f1c;

padding-left:15px;

}

.stat-box h1{

color:#ff9f1c;

font-size:42px;

font-weight:700;

margin-bottom:0;

}

.stat-box p{

margin:0;

color:#6c757d;

}


/* BUTTON */

.about-btn{

background:#ff9f1c;

color:white;

padding:12px 30px;

font-weight:600;

border-radius:3px;

transition:0.3s;

}

.about-btn:hover{

background:#e68900;

color:white;

transform:translateY(-2px);

}
.about-images img{
width:100%;
border-radius:4px;
object-fit:cover;
transition:0.5s ease;
}

.about-images img:hover{
transform:scale(1.08);
box-shadow:0 15px 35px rgba(0,0,0,0.3);
}
.reveal{
opacity:0;
transform:translateY(60px);
transition:all 0.9s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
/* =========================
MENU SECTION
========================= */

.menu-section{

padding:100px 0;

background:#f8f9fa;

}


/* TITLE */

.section-subtitle{

color:#ff9f1c;

font-weight:600;

margin-bottom:10px;

}

.section-title{

font-size:40px;

font-weight:700;

color:#0f172b;

}


/* TABS */

.menu-tabs .nav-link{

border:none;

background:none;

text-align:center;

color:#0f172b;

padding:15px 30px;

font-weight:500;

}

.menu-tabs .nav-link i{

font-size:22px;

color:#ff9f1c;

display:block;

margin-bottom:5px;

}

.menu-tabs .nav-link.active{

border-bottom:3px solid #ff9f1c;

}


/* =========================
FOOD MENU
========================= */

.food-menu-section{
padding:100px 0;
background:#f5f5f5;
}


/* HEADER */

.menu-header{
margin-bottom:40px;
}

.menu-subtitle{

color:#ff9f1c;

font-weight:600;

position:relative;

display:inline-block;

}

.menu-subtitle::before,
.menu-subtitle::after{

content:"";

width:40px;

height:2px;

background:#ff9f1c;

display:inline-block;

margin:0 10px;

vertical-align:middle;

}

.menu-title{

font-size:42px;

font-weight:700;

color:#0f172b;

margin-top:10px;

}


/* ======================
MENU TABS
====================== */

.menu-tabs{

border-bottom:1px solid #ddd;

padding-bottom:15px;

margin-bottom:40px;

}

.menu-tabs .nav{

gap:40px;

}

.menu-tabs .nav-link{

display:flex;

align-items:center;

gap:12px;

border:none;

background:none;

padding:10px 0;

color:#0f172b;

position:relative;

}

.menu-tabs i{

font-size:26px;

color:#ff9f1c;

}

.tab-text span{

font-size:13px;

color:#777;

display:block;

}

.tab-text h6{

margin:0;

font-weight:600;

font-size:16px;

}


/* ACTIVE TAB */

.menu-tabs .nav-link.active::after{

content:"";

position:absolute;

bottom:-16px;

left:0;

width:100%;

height:3px;

background:#ff9f1c;

}
/* MENU ITEMS */

.menu-item{

display:flex;

gap:20px;

padding:18px 0;

border-bottom:1px solid #ddd;

transition:0.3s;

}

.menu-item:hover{

transform:translateX(6px);

}


.menu-item img{

width:80px;

height:80px;

object-fit:cover;

border-radius:4px;

}


.menu-info{

flex:1;

}


.menu-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:6px;

}

.menu-top h5{

margin:0;

font-weight:600;

color:#0f172b;

}

.menu-top span{

color:#ff9f1c;

font-weight:700;

font-size:18px;

}

.menu-info p{

font-size:14px;

color:#777;

margin:0;

}
/* =========================
RESERVATION SECTION
========================= */

.reservation-section{

background:#0f172b;
min-height:600px;

}
.reservation-section .row{
align-items:stretch;

}

/* LEFT VIDEO */

.video-section{

position:relative;
height:550px;
overflow:hidden;
padding:20px 0 0 30px;
}


.video-section img{

width:100%;

height:100%;

object-fit:cover;

}


/* PLAY BUTTON */

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90px;
height:90px;
background:#ff9f1c;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:0.3s;
}

.play-btn::before{
content:"";
position:absolute;
width:90px;
height:90px;
border-radius:50%;
background:#ff9f1c;
animation:ripple 2s infinite;
z-index:-1;
}

.play-btn:hover{
transform:translate(-50%,-50%) scale(1.1);
}

.play-btn i{
font-size:40px;
color:#0f172b;
}

@keyframes ripple{
0%{
transform:scale(1);
opacity:0.7;
}

100%{
transform:scale(2.2);
opacity:0;
}
}

/* FORM SIDE */

.reservation-form{

background:#0f172b;

display:flex;

align-items:center;

padding:80px;

}


.form-container{

max-width:500px;

width:100%;

}


/* HEADINGS */

.reservation-form h6{

color:#ff9f1c;

font-weight:600;

}

.reservation-form h2{

color:white;

font-weight:700;

margin-bottom:25px;

}


/* INPUTS */

.form-control,
.form-select{

padding:14px;

border-radius:3px;

border:none;

}


/* BUTTON */

.book-table-btn{

width:100%;

background:#ff9f1c;

padding:15px;

border:none;

color:white;

font-weight:600;

}

.book-table-btn:hover{

background:#e68900;

}
.video-section{
position:relative;
overflow:hidden;
}

.video-section img{
transition:0.5s;
}

.video-section:hover img{
transform:scale(1.08);
}
.video-section{
position:relative;
overflow:hidden;
height:600px;
display:flex;
align-items:center;
justify-content:center;
}

.reservation-video{
width:100%;
height:100%;
object-fit:cover;
}
/* .reservation-video{
width:100%;
height:100%;
object-fit:cover;
display:block;
} */

.reservation-form{
background:#0f172b;
display:flex;
align-items:center;
padding:60px;
height:600px;
}/* PLAY ANIMATION */
.video-section,
.reservation-form{
height:70vh;
}
@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(255,159,28,0.7);

}

70%{

box-shadow:0 0 0 20px rgba(255,159,28,0);

}

100%{

box-shadow:0 0 0 0 rgba(255,159,28,0);

}

}
@media (max-width: 992px){

.video-section{
height:350px;
padding:20px;
}

.reservation-video{
width:100%;
height:100%;
object-fit:cover;
border-radius:6px;
}

.reservation-form{
height:auto;
padding:40px 25px;
}

}
/* =========================
TEAM SECTION
========================= */

.team-section{

padding:100px 0;

background:#f8f9fa;

}


/* TITLE */

.section-title{

font-size:40px;

font-weight:700;

color:#0f172b;

}

.section-subtitle{

color:#ff9f1c;

font-weight:600;

position:relative;

display:inline-block;

}

.section-subtitle::before,
.section-subtitle::after{

content:"";

width:40px;

height:2px;

background:#ff9f1c;

display:inline-block;

margin:0 10px;

vertical-align:middle;

}


/* CARD */

.team-card{

background:white;

padding:30px;

text-align:center;

border-radius:6px;

box-shadow:0 5px 20px rgba(0,0,0,0.05);

transition:0.4s;

position:relative;

overflow:hidden;

}


.team-card:hover{

transform:translateY(-10px);

box-shadow:0 15px 40px rgba(0,0,0,0.15);

}


/* IMAGE */

.team-img{

width:160px;

height:160px;

margin:auto;

border-radius:50%;

overflow:hidden;

margin-bottom:20px;

}

.team-img img{

width:100%;

height:100%;

object-fit:cover;

}


/* TEXT */

.team-card h5{

font-weight:600;

margin-bottom:5px;

}

.team-card p{

color:#777;

font-size:14px;

}


/* SOCIAL ICONS */

.team-social{

position:absolute;

bottom:-50px;

left:0;

width:100%;

display:flex;

justify-content:center;

gap:10px;

transition:0.4s;

}

.team-card:hover .team-social{

bottom:20px;

}

.team-social a{

width:36px;

height:36px;

background:#ff9f1c;

display:flex;

align-items:center;

justify-content:center;

color:white;

border-radius:50%;

}
/* TESTIMONIAL */

.testimonial-section{
padding:100px 0;
background:#f8f9fa;
}

/* CARD */
.testimonial-card{
background:white;
padding:35px;
border-radius:6px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.4s;
width:100%;
max-width:380px;
}

/* .testimonial-card{
background:white;
padding:35px;
border-radius:6px;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
transition:0.4s;
height:100%;
} */

/* CENTER CARD */

.swiper-slide-active .testimonial-card{
background:#ff9f1c;
color:white;
transform:scale(1.05);
}

/* QUOTE */

.quote-icon{
font-size:32px;
color:#ff9f1c;
margin-bottom:10px;
}

.swiper-slide-active .quote-icon{
color:white;
}

/* CLIENT */

.client{
display:flex;
align-items:center;
gap:12px;
margin-top:20px;
}

.client img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

.client h6{
margin:0;
font-weight:600;
}

.client span{
font-size:13px;
color:#777;
}

.swiper-slide-active span{
color:white;
}

/* DOTS */

.swiper-pagination{
margin-top:30px;
position:relative;
}

.swiper-pagination-bullet{
background:#ddd;
opacity:1;
}

.swiper-pagination-bullet-active{
background:#ff9f1c;
}

.swiper-slide{
display:flex;
justify-content:center;
height:auto;
}
.testimonial-card p,
.testimonial-card h6{
color:#0f172b;
}
.swiper-slide-active p,
.swiper-slide-active h6,
.swiper-slide-active span{
color:white;
}
.testimonial-slider{
padding:30px 0;
}
/* =========================
TESTIMONIAL MOBILE
========================= */

@media (max-width: 768px){

.testimonial-section{
padding:70px 0;
}

.testimonial-card{
max-width:100%;
padding:25px;
}

.swiper-slide-active .testimonial-card{
transform:scale(1); /* prevent layout break */
}

.client{
gap:10px;
}

.client img{
width:40px;
height:40px;
}

}

/* =========================
FOOTER
========================= */

.footer-section{
background:#0f172b;
color:#dcdcdc;
padding:80px 0 30px;
}

/* TITLE */

.footer-title{
color:#ff9f1c;
font-weight:600;
margin-bottom:20px;
position:relative;
}

.footer-title::after{
content:"";
width:40px;
height:2px;
background:#ff9f1c;
display:inline-block;
margin-left:10px;
vertical-align:middle;
}


/* LINKS */

.footer-links{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
color:#dcdcdc;
text-decoration:none;
transition:0.3s;
}

.footer-links a:hover{
color:#ff9f1c;
padding-left:5px;
}


/* CONTACT ICONS */

.footer-section i{
margin-right:8px;
color:#ff9f1c;
}


/* SOCIAL */

.footer-social{
margin-top:15px;
}

.footer-social a{
width:35px;
height:35px;
border:1px solid #ff9f1c;
display:inline-flex;
align-items:center;
justify-content:center;
color:#ff9f1c;
border-radius:50%;
margin-right:8px;
transition:0.3s;
}

.footer-social a:hover{
background:#ff9f1c;
color:white;
}


/* NEWSLETTER */

.newsletter{
display:flex;
margin-top:15px;
}

.newsletter input{
flex:1;
padding:12px;
border:none;
outline:none;
}

.newsletter button{
background:#ff9f1c;
border:none;
padding:12px 20px;
color:white;
font-weight:600;
}


/* DIVIDER */

.footer-divider{
border-color:#1f2a44;
margin:40px 0;
}


/* BOTTOM BAR */

.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:10px;
}

.footer-menu a{
color:#dcdcdc;
margin-left:15px;
text-decoration:none;
}

.footer-menu a:hover{
color:#ff9f1c;
}
/* =========================
FOOTER MOBILE
========================= */

@media (max-width: 768px){

.footer-section{
padding:60px 0 25px;
text-align:left;
}

/* newsletter stack */

.newsletter{
flex-direction:column;
gap:10px;
}

.newsletter input{
width:100%;
}

.newsletter button{
width:100%;
}

/* bottom footer layout */

.footer-bottom{
flex-direction:column;
align-items:flex-start;
gap:15px;
}

.footer-menu{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.footer-menu a{
margin-left:0;
}

}
@media (max-width: 480px){

.section-title{
font-size:28px;
}

.footer-title{
font-size:18px;
}

}

/* CONTACT PAGE */

.contact-section{
background:#f6f6f6;
}
.contact-section .bg-spec{
    background: #0f172b;
} 

.contact-title{
color:#f5a623;
font-family:'Dancing Script', cursive;
font-size:20px;
}

/* .contact-title{
font-weight:700;
margin-top:5px;
} */

.contact-heading{
font-family:'Dancing Script', cursive;
color:#f5a623;
margin-bottom:5px;
}

.contact-heading::after{
content:"";
display:inline-block;
width:40px;
height:2px;
background:#f5a623;
margin-left:10px;
vertical-align:middle;
}

.contact-input{
padding:14px;
border-radius:4px;
}

.contact-btn{
background:#f5a623;
color:white;
padding:14px;
font-weight:500;
border:none;
}

.contact-btn:hover{
background:#e08e0b;
}

