@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
 :root{
      --accent: #fea222;
      --btn-text: #000000; /* black text on button as requested */
      --bg-dark-gradient: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65));
      --max-width: 1200px;
      --transition: 250ms cubic-bezier(.2,.9,.3,1);
      --dark: #0f0f0f;
      --white: #fff;
      --muted: #8f8f89;
      --black: #111;
      --gap: 10px;
      --transition: 0.5s ease;
      --radius: 14px;
      --black: #111;
      --radius: 10px;
      --transition: 0.4s cubic-bezier(.25,.8,.25,1);
      --transition: 400ms ease;
      --dark-overlay: rgba(0,0,0,0.55);
      --bg: #0f0f0f;
      --radius: 12px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
      color:#fff;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      background:#111;
      padding-top: 80px;
    }

    /* ===========================
   GO TO TOP BUTTON STYLES
=========================== */
#goTopBtn {
  position: fixed;
  bottom: 80px;
  right: 125px;
  background-color: #fea222;
  color: #fff;
  border: none;
  outline: none;
  width: 45px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInBtn 1s forwards 1.5s;
}

/* Hover effect */
#goTopBtn:hover {
  background-color: #e1911d;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Fade-in animation */
@keyframes fadeInBtn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 900px) {
  #goTopBtn{
    right: 30px;
  }
}

/* Smooth scroll behavior for whole page */
html {
  scroll-behavior: smooth;
}


/* ===============================
   NAVBAR SECTION
=============================== */
.navbar-wrap {
  position: fixed; /* was relative */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: #252222;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px;
  gap: 16px;
  position: relative;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transform-origin: center;
}

.logo .text img {
  width: 50px;
  border-radius: 50%;
}

/* NAV LINKS */
nav.desktop-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  transform-origin: center;
}

nav.desktop-menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 8px;
  transition: color var(--transition), transform var(--transition);
  opacity: 0;
  transform: scale(1.2);
  display: inline-block;
}

/* --- Animated underline --- */
nav.desktop-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.35s ease;
}

nav.desktop-menu a:hover::after {
  width: 100%;
}

nav.desktop-menu a:hover:not(.cta-btn) {
  color: var(--accent);
  transform: translateY(-3px) scale(1.02);
}

/* Active link underline */
nav.desktop-menu a.active::after {
  width: 100%;
}
nav.desktop-menu a.active {
  color: var(--accent);
}

nav.desktop-menu a:last-child::after {
  display: none;
}

/* CTA BUTTON */
.cta-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 12px;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transform: scale(1.2);
}

.cta-btn:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.hamburger .bars {
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}

.hamburger .bars::before,
.hamburger .bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}

.hamburger .bars::before {
  top: -7px;
}
.hamburger .bars::after {
  bottom: -7px;
}

.hamburger .close-icon {
  display: none;
  color: #fff;
  font-size: 22px;
  position: absolute;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: -100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.98));
  min-height: 100vh;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 60;
  transition: top 380ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

.mobile-menu.open {
  top: 0;
}

.mobile-menu a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 8px;
  position: relative;
}

/* Animated underline for mobile links */
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.35s ease;
}

.mobile-menu a:hover::after {
  width: 100px;
}

.mobile-menu .cta a:hover::after{
  width: 0;
  color: none;
}

.mobile-menu a.active::after {
  width: 100px;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .cta {
  margin-top: 12px;
  max-width: 220px;
}

/* Disable underline + hover color change for the BOOK A TABLE button */
.mobile-menu .cta-btn::after {
  display: none !important;
}

.mobile-menu :hover::after {
  width: 0 !important;
}

/* Prevent hover color change on BOOK A TABLE */
.mobile-menu .cta-btn:hover {
  color: #fff !important;   /* keep original white text */
  background: var(--accent) !important; /* keep original button background */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  nav.desktop-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }

}


    /* --- HERO SECTION --- */
    .hero{
      min-height:calc(100vh - 80px);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
      padding:40px 24px;
    }

    /* background image + overlay */
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background-image: url('images/bg-hero.jpg'); /* fallback sample image */
      background-size:cover;
      background-position:center;
      filter:brightness(0.9);
      z-index:0;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      background:var(--bg-dark-gradient);
      z-index:1;
    }

    .hero-inner{
      position:relative;
      z-index:2;
      width:100%;
      max-width:var(--max-width);
      margin:0 auto;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:32px;
      align-items:center;
    }

    .hero-left{
      padding:28px;
    }
    .eyebrow{
      font-weight:600;
      letter-spacing:0.4px;
      color:var(--accent);
      margin-bottom:10px;
      opacity:0;
      transform:translateY(8px);
      animation:fadeInUp 600ms forwards;
      animation-delay:0.7s;
    }
    .hero-title{
      font-size: 68px;
      line-height:1.5;
      margin:0 0 18px 0;
      color:#fff;
      font-weight:700;
      opacity:0;
      transform:translateX(-60px);
      animation:slideInLeft 700ms cubic-bezier(.2,.9,.3,1) forwards;
      animation-delay:0.5s;
    }
    @media (max-width:720px){ .hero-title{font-size:34px} }

    .hero-desc{
      max-width:560px;
      font-size:15px;
      line-height:1.6;
      color:rgba(255,255,255,0.92);
      margin-bottom:18px;
      opacity:0;
      transform:translateY(14px);
      animation:fadeInUp 650ms forwards;
      animation-delay:1.05s;
    }

    .hero-actions{
      display:flex;
      gap:12px;
      align-items:center;
    }

    /* right image block */
    .hero-right{
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .food-card{
      width:360px;
      max-width:92%;
      height:360px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 14px 40px rgba(0,0,0,0.55);
      transform-origin:center;
      opacity:0;
      transform:translateX(40px) scale(0.98);
      animation:slideInRight 700ms cubic-bezier(.2,.9,.3,1) forwards;
      animation-delay:0.6s;
    }
    .food-card img{
      max-width: 500px;
      height: 500px;
      object-fit:cover;
      border-radius:14px;
      display:block;
      transform-origin:center center;
      /* spinning animation */
      animation:spin 15s linear infinite;
      transition: transform 220ms ease, box-shadow 220ms ease;
      /* box-shadow: 0 10px 30px rgba(0,0,0,0.5); */
      cursor:pointer;
    }
    .food-card img:hover{
      transform: scale(1.07);
      animation-play-state:paused; /* stop spin on hover */
      /* box-shadow: 0 24px 60px rgba(0,0,0,0.6); */
    }

    /* small screens */
    @media (max-width:960px){
      .hero-inner{ grid-template-columns:1fr; gap:18px; }
      .hero-right{ order:-1; } /* show image above on small screens */
      nav.desktop-menu{ display:none; }
      .hamburger{ display:flex; }
    }

    /* animations */
    @keyframes slideInLeft{
      from{ opacity:0; transform:translateX(-60px) }
      to{ opacity:1; transform:translateX(0) }
    }
    @keyframes fadeInUp{
      from{ opacity:0; transform:translateY(14px) }
      to{ opacity:1; transform:translateY(0) }
    }
    @keyframes slideInRight{
      from{ opacity:0; transform:translateX(40px) scale(0.98) }
      to{ opacity:1; transform:translateX(0) scale(1) }
    }
    @keyframes spin{
      from{ transform: rotate(0deg) }
      to{ transform: rotate(360deg) }
    }

    .muted{ color:rgba(255,255,255,0.85); font-weight:400; }
    /* small tweaks for hero button appearance on mobile */
    .hero .cta-btn.secondary{
      background:transparent;
      border:2px solid var(--accent);
      color:var(--accent);
      font-weight:700;
    }

    @media screen and (max-width: 720px){
      .food-card img{
           max-width: 320px;
           height: 320px;
    
    }
    }

    /* nice responsive padding */
    @media (max-width:480px){
      .navbar{ padding:14px 16px }
      .hero{ padding:22px 16px; }
      .hero-title{ font-size:28px }
      .food-card{ height:300px }
    }

/* features section =============================
========================================== */
.features {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.features .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Feature Card */
.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 10px #0000001c;
  cursor: pointer;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.8s ease;
}

.feature-card:hover {
  background: #fea222;
  transform: translateY(-8px);
  box-shadow: 0 4px 15px #0000004b;
}

.feature-card:hover .icon,
.feature-card:hover h3,
.feature-card:hover p {
  color: #fff;
}

.feature-card .icon {
  font-size: 45px;
  color: #fea222;
  margin-bottom: 18px;
  transition: 0.3s;
}

.feature-card h3 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
  .features .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features .container {
    grid-template-columns: 1fr;
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* About section ================================
=========================================== */
.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

/* Left Column - Gallery */
.about-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.small img {
  transform: scale(0.95);
}

/* Right Column - Text */
.about-text {
  flex: 1;
}

.site-name {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.site-name .line {
  width: 80px;
  height: 2px;
  background-color: var(--accent);
}

.site-name h4 {
  font-size: 20px;
  color: var(--black);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.main-title {
  font-size: 36px;
  color: var(--black);
  display: flex;
  align-items: center !important;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.main-title .icon {
  color: var(--accent);
}

.short-text, .long-text {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vertical-line {
  width: 3px;
  height: 50px;
  background-color: var(--accent);
  border-radius: 2px;
}

.stat-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-text .counter {
  font-weight: bold;
  color: var(--accent);
  font-size: 48px;
}

.stat-text .label {
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
  margin-left: 20px;
}

#experience,
#master{
  font-weight: bold;
  color: #555;
}

.btn-read-more {
  background-color: var(--accent);
  color: #fff;
  font-weight: 500;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.btn-read-more:hover {
  background-color: #e5941b;
}

/* Fade-in class */
.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
  }
  .about-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }
  .main-title {
    font-size: 28px;
  }
  
}

/* ============ FIX FOR 375PX ============ */
@media (max-width: 420px) {

  .about-container {
    width: 92%;
    padding: 0;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  /* GALLERY FIX */
  .about-gallery {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .gallery-left,
  .gallery-right {
    width: 100%;
  }

  .gallery-left img,
  .gallery-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* TEXT FIX */
  .about-text {
    width: 100%;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.7rem;
    line-height: 2.2rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }

  /* STATS FIX */
  .stats-row {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .stat-box {
    width: 100%;
    padding: 18px;
  }

  .stat-box h4 {
    font-size: 1.8rem;
  }

  /* BUTTON FIX */
  .btn-read-more {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
  }
  .main-title{
    display: none;
  }
}




/* TOGGLE MENU SECTION ============================
=========================================== */
.toggle-menu-section {
  padding: 80px 20px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("images/bg-hero.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}

.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.menu-title .line {
  width: 60px;
  height: 3px;
  background-color: #fea222;
}

.menu-title h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.main-menu-title {
  font-size: 65px;
  font-weight: 700;
  text-align: center;
  margin: 30px 0 50px;
  color: #fff;
}

/* Toggle Menu */
.menu-toggle {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-item .icon {
  font-size: 28px;
  color: #fea222;
}

.menu-item .menu-text {
  font-weight: 600;
  color: #777;
  font-size: 12px;
}
.breakfast,
.lunch,
.dinner{
  color: #e5941b;
  font-weight: bold;
}

.menu-item.active .menu-text {
  color: #fea222;
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  background: #fea222;
  transition: 0.3s;
}

.menu-item:hover::after,
.menu-item.active::after {
  width: 100%;
}

/* Menu Lists */
.menu-list {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.menu-list.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.menu-col {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 15px #0000001a;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.menu-col img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.menu-info h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  border-bottom: 2px solid #eee;
  padding-bottom: 3px;
  margin-bottom: 5px;
}

.menu-info p {
  font-size: 14px;
  color: #555;
  margin-top: -5px;
}

.menu-info .price {
  font-weight: bold;
  color: #fea222;
  font-size: 16px;
  position: absolute;
  right: 0px;
  top: 22px;
}

/* Reveal animation */
.menu-col.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media(max-width: 1200px){
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px){
  .main-menu-title {
    font-size: 50px;
  }
  .menu-toggle {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .menu-item {
    justify-content: center;
  }
}


/* RESERVATION SECTION =======================
========================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Reservation Section */
.reservation-section{
  padding: 70px 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

/* Row layout */
.reservation-row{
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

/* Left column: image */
.reservation-left{
  flex: 1 1 48%;
  min-width: 300px;
}

.media-wrap{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.res-image{
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  min-height: 380px;
  transform: scale(1);
  transition: transform 0.8s ease;
}

/* Play button centered */
.play-btn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #e5941b;
  border: 3px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 4;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Pulsing shadow animation (infinite) */
.play-btn::after{
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(254,162,34,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(254,162,34,0.18); }
  70% { box-shadow: 0 0 0 22px rgba(254,162,34,0.03); }
  100% { box-shadow: 0 0 0 0 rgba(254,162,34,0); }
}

.play-btn:hover{
  transform: translate(-50%, -50%) scale(1.03);
  color: #fff;
}

/* Right column: form & titles */
.reservation-right{
  flex: 1 1 44%;
  min-width: 300px;
}

/* small head (line + Reservation) */
.section-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 8px;
  opacity: 0.95;
}

.head-line{
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.small-title{
  font-size: 24px;
  color: var(--white);
  margin: 0;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Main title */
.main-res-title{
  font-size: 35px;
  color: var(--white);
  font-weight: 600;
  margin: 12px 0 22px;
  line-height: 1.05;
}

/* Form style */
.res-form{
  background: rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Rows and fields */
.res-form .row{
  display:flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.field{
  position: relative;
  flex: 1 1 48%;
  min-width: 180px;
}

/* full width field */
.field.full{ flex-basis: 100%; }

/* Inputs */
.field input,
.field textarea{
  width: 100%;
  padding: 14px 14px 14px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--white);
  color: var(--black);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  caret-color: var(--accent);
}


/* Button */
.btn-book{
  width: 100%;
  display: block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 14px;
  margin-top: 6px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-book:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(254,162,34,0.18);
}

/* Animation helpers: initial state and in-view */
.animate { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(.2,.9,.2,1); }
.animate.in-view { opacity: 1; transform: translateY(0); }

/* Video modal */
.video-modal{ display:none; position:fixed; inset:0; z-index:9999; }
.video-modal.show{ display:block; }
.video-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,0.7); }
.video-content{
  position:relative;
  max-width:900px;
  margin: 6vh auto;
  background: #000;
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.video-inner iframe{ width:100%; height:520px; display:block; border:0; }
.close-video{
  position:absolute; right:10px; top:8px; z-index:5;
  background:transparent; color:#fff; border:0; font-size:28px; cursor:pointer;
  padding:6px 10px;
}

/* Responsive */
@media (max-width: 992px){
  .reservation-row{ gap: 20px; }
  .reservation-left, .reservation-right{ flex: 1 1 100%; }
  .res-image{ min-height: 260px; }
  .main-res-title{ font-size: 36px; text-align: left; }
}
@media (max-width: 480px){
  .main-res-title{ font-size: 30px; }
  .play-btn{ width:70px; height:70px; font-size:20px; }
  .video-inner iframe{ height:320px; }

  .res-image{
  height: 350px;
}
}


/* =========================
    TEAM SECTION
========================= */
.team-section {
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
  url("images/resturant-bg.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional */
  padding: 80px 0;
  color: var(--white);
}

.team-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.team-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 10px;
}

.team-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}

.team-main-title {
  font-size: 45px;
  font-weight: 700;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card {
  background: #e1911d;
  text-align: center;
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: var(--transition);
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Hover Effects */
.team-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}

.team-img:hover .team-overlay {
  opacity: 1;
}

.team-overlay a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  color: var(--accent);
  text-decoration: none;
}

.team-overlay a:hover {
  background: var(--accent);
  color: var(--white);
}

.team-name {
  font-size: 22px;
  margin-top: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.team-position {
  color: var(--black);
  font-size: 15px;
}

/* ================
   Scroll Reveal
================ */
.scroll-anim {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animation Delay for Each Card */
.team-card:nth-child(1) {
  transition-delay: 0.2s;
}
.team-card:nth-child(2) {
  transition-delay: 0.4s;
}
.team-card:nth-child(3) {
  transition-delay: 0.6s;
}
.team-card:nth-child(4) {
  transition-delay: 0.8s;
}


/* ================
   Responsive
================ */
@media(max-width: 992px) {
  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .team-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
  padding: 100px 0;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6),     
      rgba(0, 0, 0, 0.6)       
    ),
    url("images/bg-hero.jpg"); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}


.testimonials .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

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

.section-header .title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
}

/* Testimonials Items */
.testimonials-item {
  background: #ffffff;
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 400px;
}

.testimonials-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.12);
}

/* User Info */
.testimonials-item .info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonials-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-item .name {
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.testimonials-item .job {
  font-size: 14px;
  color: #777;
}

.testimonials-item p {
  margin-top: 18px;
  color: #555;
  line-height: 1.6;
}

.rating {
  margin-top: 15px;
  font-size: 16px;
  color: hsl(36, 88%, 56%);
}

/* Slider Pagination Custom */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #eee;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: hsl(36, 88%, 56%);
}


/* =========================
   FOOTER SECTION STYLES
========================= */
.footer-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Row */
.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

/* Title + Line wrap */
.footer-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-line {
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.footer-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  font-family: "Pacifico", cursive;
  font-style: normal;
}

/* Links */
.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Contact Info */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 15px;
}

.footer-contact i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 16px;
}

/* Social Icons */
.footer-socials {
  margin-top: 18px;
}

.footer-socials a {
  display: inline-block;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  margin-right: 10px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-4px);
}

/* Opening Hours */
.footer-opening li {
  list-style: none;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 15px;
}

/* Newsletter */
.newsletter-text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form input {
  max-width: 200px;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--white);
  background: transparent;
}

.newsletter-form input::placeholder {
  color: #ccc;
}

.newsletter-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #e5941b;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom span {
  color: var(--accent);
}

/* Scroll Animation */
.scroll-anim {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.scroll-anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-row {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-title-wrap {
    justify-content: center;
  }

  .footer-socials a {
    margin-right: 6px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* ===========================
   PAGE HEADER SECTION STYLES
=========================== */
.page-header {
  position: relative;
  width: 100%;
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
              url("images/bg-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: fadeInHeader 1s ease forwards;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: zoomOutHeader 1.2s ease forwards;
  transform: scale(1.3);
  opacity: 0;
  animation-delay: 0.3s;
}

.header-content h2 {
  font-size: 3rem;
  color: #fea222;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: zoomOutTitle 1.2s ease forwards;
  animation-delay: 0.6s;
  transform: scale(1.3);
  opacity: 0;
}

.header-content p {
  font-size: 1rem;
  color: #fff;
  animation: zoomOutText 1.2s ease forwards;
  animation-delay: 1s;
  transform: scale(1.3);
  opacity: 0;
}

.header-content a {
  color: #fea222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-content a:hover {
  color: #fff;
}

.header-content span {
  margin: 0 6px;
  color: #fff;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes zoomOutTitle {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomOutText {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInHeader {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .page-header {
    height: 50vh;
  }
  .header-content h2 {
    font-size: 2rem;
  }
  .header-content p {
    font-size: 0.9rem;
  }
}

/* ===========================
   CONTACT SECTION STYLES (UPDATED)
=========================== */
.contact-section {
  padding: 100px 5%;
  background: #fffaf3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 0; /* ✅ remove gap between map and form */
  flex-wrap: wrap;
}

/* LEFT: MAP */
.contact-map {
  width: 500px; /* ✅ fixed width */
  flex-shrink: 0;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius); /* rounded only on left side */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RIGHT: FORM */
.contact-form {
  width: 500px; /* ✅ fixed width */
  height: auto;
  margin-left: 20px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0 var(--radius) var(--radius) 0; /* rounded only on right side */
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease both;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--black);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  outline: none;
  background: transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form textarea{
  height: 220px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(254,162,34,0.1);
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}

.contact-form button:hover {
  background: #e29100;
  transform: translateY(-3px);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Scroll animation */
[data-animate] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
  }

  .contact-map,
  .contact-form {
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius);
  }

  .contact-map iframe {
    border-radius: var(--radius);
    height: 400px;
  }
}










