/* ---
   Global Styles
--- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1f1f1f;
  overflow-x: hidden;
  background: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---
   NEW: Reusable Section Titles
--- */
.section-title {
  font-family: 'Dancing Script', sans-serif;
  color: #e3c08d;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Specific overrides for titles */
.about-card .section-title {
  font-size: 32px;
}
.about-card .section-subtitle {
  color: #0d1b24; /* Override for white card */
}
.special-header .section-title {
  font-size: 32px;
  margin-bottom: 6px;
}
.special-header .section-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.reservation-left .section-subtitle {
  font-size: 36px;
  margin: 10px 0;
}
.testimonials-title .section-subtitle {
  font-size: 36px;
}
.newsletter-title .section-title {
  margin: 0;
}
.newsletter-title .section-subtitle {
  font-size: 24px;
  margin: 5px 0 0 0;
}


/* ---
   Header
--- */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

/* UPDATED: Changed color */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Dancing Script', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e3c08d;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  position: relative;
}

nav a {
  font-weight: 500;
  color: #1f1f1f;
  transition: color .3s;
}

/* UPDATED: Added .active-page style */
nav a:hover,
nav a.active-page {
  color: #ff7f00;
}

nav li {
  position: relative;
}

nav li ul {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 160px;
  z-index: 99;
}

nav li:hover>ul {
  display: block;
}

nav li ul li {
  padding: 8px 20px;
}

nav li ul li a {
  color: #1f1f1f;
  font-weight: 400;
}

nav li ul li a:hover {
  color: #ff7f00;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1f1f1f;
  border-radius: 3px;
  transition: .3s;
}

@media(max-width:768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 220px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  nav li ul {
    position: static;
    box-shadow: none;
    padding-left: 10px;
  }

  nav li ul li {
    padding: 6px 0;
  }

  .menu-toggle {
    position: absolute;
    right: 15px;
  }
}

/* ---
   Hero Section (Homepage)
--- */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 90px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 40px 120px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  padding-top: 20px;
  position: relative;
}

.hero-text h2 {
  font-family: 'Dancing Script', sans-serif;
  font-size: 60px;
  margin-bottom: 15px;
  color: #fff;
  opacity: 0;
  transform: translateX(-100px);
}

.hero-text .hero-title,
.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0;
  transform: translateX(-100px);
}

.hero-text p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f1f1f1;
  opacity: 0;
  transform: translateX(-100px);
}

.hero-text .btn {
  display: inline-block;
  border: 2px solid #e3c08d;
  color: #fff;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: all .3s;
  opacity: 0;
  transform: translateX(-100px);
}

.hero-text .btn:hover {
  background: #fff;
  color: #000;
}

/* ---
   NEW: Button Outline Style
--- */
.btn.btn-outline {
  display: inline-block;
  border: 2px solid #e3c08d;
  color: #e3c08d;
  background: transparent;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}
.btn.btn-outline:hover {
  background: #e3c08d;
  color: #0b0f13;
}


.shape-left {
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 160px;
  height: 160px;
  z-index: 2;
}

.shape-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-images {
  flex: 0 0 420px;
  position: relative;
  display: block;
  height: 480px;
  order: 1;
}

.img-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  height: 400px;
  overflow: hidden;
  border-top-left-radius: 90px;
  z-index: 2;
  transform: translate(-300px, 300px) rotate(-45deg);
  opacity: 0;
}

.img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-bottom {
  position: absolute;
  left: 60px;
  top: 240px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-top-right-radius: 90px;
  z-index: 3;
  transform: translate(-300px, 300px) rotate(-45deg);
  opacity: 0;
}

.img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shape-right-top {
  position: absolute;
  top: 60px;
  right: -120px;
  width: 120px;
  height: 120px;
  z-index: 3;
}

.shape-right-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shape-right-bottom {
  position: absolute;
  top: 300px;
  right: 100px;
  width: 160px;
  height: 160px;
  z-index: 5;
}

.shape-right-bottom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media(max-width:768px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 100px;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .hero-text .hero-title,
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 16px;
    max-width: 90%;
  }

  .hero-text .btn {
    font-size: 15px;
    padding: 12px 26px;
  }

  .hero-images {
    flex: 0 0 auto;
    width: 100%;
    height: 500px;
    margin-top: 20px;
    order: 0;
    position: relative;
  }

  .img-top {
    position: absolute;
    width: 70%;
    height: 400px;
    top: 0;
    right: 0;
    border-top-left-radius: 70px;
    z-index: 2;
  }

  .img-bottom {
    position: absolute;
    width: 65%;
    height: 240px;
    top: 260px;
    left: 0;
    border-top-right-radius: 70px;
    z-index: 3;
  }

  .shape-right-bottom {
    display: none;
  }
}

/* ---
   NEW: Inner Page Hero
--- */
.inner-hero {
  position: relative;
  min-height: 45vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.inner-hero .container {
  position: relative;
  z-index: 2;
}
.inner-hero-title {
  font-family: 'Dancing Script', sans-serif;
  font-size: 72px;
  color: #e3c08d;
  font-weight: 700;
}
@media (max-width: 768px) {
  .inner-hero-title {
    font-size: 48px;
  }
}

/* ---
   NEW: Page Content Wrapper
--- */
.page-content-wrapper {
  background: #0b0f13;
  color: #ccc;
  padding: 100px 0 0;
  line-height: 1.7;
}
.page-content-wrapper .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.page-content-wrapper p {
  font-size: 16px;
  margin-bottom: 1.5em;
}

/* ---
   Specialist Cuisine Section
--- */
.specialist-cuisine {
  position: relative;
  padding: 80px 20px;
  background: #0b0f13;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.shape-decoration {
  position: absolute;
  top: 10%;
  right: 0;
  transform: translateY(-30%);
  z-index: 1;
}

.shape-decoration img {
  width: 125px;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  pointer-events: none;
}

@media (max-width: 768px) {
  .shape-decoration {
    display: none;
  }
}

.specialist-cuisine .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}

.cuisine-item {
  background: #151a1e;
  padding: 40px 25px;
  width: 100%;
  max-width: 500px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.cuisine-item:hover {
  transform: translateY(-8px);
  background: #1e252b;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.cuisine-item .icon {
  margin-bottom: 20px;
}
.cuisine-item .icon img {
  width: 60px;
  height: 60px;
}
/* NEW: Icon styles for services */
.cuisine-item .icon i {
  font-size: 48px;
  color: #d4a76a;
}

.cuisine-item h4 {
  color: #d4a76a;
  font-size: 20px;
  margin-bottom: 10px;
}

.cuisine-item p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

.item-1 {
  border-radius: 40px 0 40px 0;
}
.item-2 {
  border-radius: 0 40px 0 40px;
}
.item-3 {
  border-radius: 40px 0 40px 0;
}
.item-4 {
  border-radius: 0 40px 0 40px;
}

@media (max-width: 768px) {
  .shape-decoration img {
    width: 150px;
  }
  .cuisine-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .cuisine-item {
    max-width: 100%;
    padding: 30px 20px;
  }
  .section-title {
    font-size: 40px;
  }
  .section-subtitle {
    font-size: 26px;
  }
}


/* ==============================
   Service Highlight Section
   ============================== */
.service-highlight-section {
  background-color: #0b0f13;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side (Images) */
.service-images {
  position: relative;
}

.service-images .image-top img {
  width: 100%;
  border-radius: 0 80px 0 0;
  object-fit: cover;
  display: block;
}

.service-images .image-bottom {
  position: absolute;
  bottom: -60px;
  right: 0;
  width: 80%;
}

.service-images .image-bottom img {
  width: 100%;
  border-radius: 0 0 80px 0;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Right Side (Text Content) */
.service-content {
  color: #fff;
  padding-left: 20px;
}

.service-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: #e3c08d;
  margin-bottom: 10px;
}

.service-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-desc {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 500px;
}

.service-btn {
  background-color: #e3c08d;
  color: #0b0f13 !important;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-btn:hover {
  background-color: #d4a76a;
  transform: translateY(-2px);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .service-images .image-bottom {
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }

  .service-content {
    padding-left: 0;
  }

  .service-desc {
    margin: 0 auto 30px;
  }
}



/* ---
   =============================
   Our Menu Page Styles
   =============================
--- */

/* --- Helper Section Styles (Re-use from index/news) --- */
.section-light {
    background: #fff; /* Section 3 & 6: Light background */
    color: #1f1f1f;
}
.section-dark {
    background: #0B0E11; /* Section 4: Dark background */
    color: #fff;
}
/* Re-using .page-hero styles for Section 1, just adding a specific class */
.menu-hero {
    background-image: url('img/bg.jpg');
}

/* --- Section 2: Menu Intro / Philosophy --- */
.menu-intro-section {
    padding: 80px 20px 40px 20px;
    background: #F8F8F8;
    text-align: center;
}
.menu-intro-section .intro-text {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

/* --- Section 3 & 4: Menu List Grid (Appetizers & Main Course) --- */
.menu-category-section {
    padding: 80px 20px;
    overflow: hidden;
}
.menu-category-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}
.menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    transition: all 0.3s;
}
.section-dark .menu-item {
    border-color: rgba(255, 255, 255, 0.1);
}
.menu-item:hover {
    padding-bottom: 20px;
}
.menu-item .item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
}
.menu-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.menu-item .price {
    color: #e3c08d;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
}
.menu-item .description {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: #666;
}
.section-dark .menu-item .description {
    color: #aaa;
}

/* --- Section 5: Chef's Special (Visual Grid) --- */
.chefs-special-section {
    background: #0D1518;
    padding: 80px 20px;
    overflow: hidden;
    text-align: center;
}
.special-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.special-card {
    background: #182226;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.special-card:hover {
    transform: translateY(-10px);
}
.special-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.special-card .card-info {
    padding: 25px;
    color: #fff;
}
.special-card h3 {
    font-size: 22px;
    margin: 0 0 8px;
}
.special-card p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}
.special-card .special-price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #e3c08d;
}

/* --- Section 6: Dessert & Drinks (Split Menu) --- */
.menu-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.menu-column h3 {
    font-size: 30px;
    color: #e3c08d;
    margin-bottom: 30px;
    border-bottom: 2px solid #e3c08d;
    padding-bottom: 10px;
    display: inline-block;
}
.menu-column .menu-item.small {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.menu-column .menu-item.small:hover {
    padding-bottom: 15px;
}
.menu-column .menu-item.small .item-header h4 {
    font-size: 18px;
}
.menu-column .menu-item.small .price {
    font-size: 16px;
}
.menu-column .menu-item.small .description {
    color: #888;
}

/* --- Section 7: CTA - Reservation Promo --- */
.reservation-promo-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
}
.reservation-promo-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.reservation-promo-section .container {
    position: relative;
    z-index: 2;
    color: #fff;
}
.reservation-promo-section .section-title {
    font-size: 24px;
    color: #e3c08d;
    margin-bottom: 5px;
}
.reservation-promo-section .section-subtitle {
    font-size: 60px;
    margin-bottom: 40px;
}
.btn-cta {
    display: inline-block;
    background: #e3c08d;
    color: #000;
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-cta:hover {
    background: #fff;
    color: #e3c08d;
}


/* --- Responsive Adjustments for Menu Page --- */
@media (max-width: 900px) {
    .menu-list-grid {
        grid-template-columns: 1fr; /* Stack menu items on smaller screens */
        gap: 30px;
    }
    .special-card-grid {
        grid-template-columns: 1fr 1fr;
    }
    .menu-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 600px) {
    .special-card-grid {
        grid-template-columns: 1fr; /* Stack special cards on mobile */
    }
    .reservation-promo-section .section-subtitle {
        font-size: 40px;
    }
}


/* ---
   About Us Section (Homepage)
--- */
.about-us {
  background: #0D1518;
  padding: 120px 0 140px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.about-us-grid {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  padding-bottom: 40px;
}

.about-us .container {
  width: 90%;
  max-width: 1200px;
}
.about-us-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.img {
  overflow: hidden;
  position: relative;
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-1 {
  width: 300px;
  height: 430px;
  border-top-right-radius: 100px;
  margin-right: 20px;
}
.img-2 {
  width: 350px;
  height: 500px;
  border-bottom-left-radius: 100px;
  position: relative;
  z-index: 2;
}

.about-card {
  background: #fff;
  padding: 60px 50px;
  border-top-right-radius: 100px;
  width: 500px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(25%);
  z-index: 3;
}

.about-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.about-card .btn {
  color: #d4a373;
  font-weight: 600;
  text-decoration: none;
}

.about-card .btn:hover {
  color: #b87b45;
}

@media (max-width: 900px) {
  .about-us-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .img-1, .img-2 {
    width: 90%;
    height: auto;
    border-radius: 20px;
    margin: 0 0 20px;
  }
  .about-card {
    position: static;
    transform: none;
    width: 90%;
    border-radius: 20px;
    margin-top: 20px;
    padding: 30px;}
}

/* ---
   NEW: About Us Page Layout
--- */
.about-page-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}
.about-page-text {
  flex: 1;
}
.about-page-image {
  flex: 0 0 45%;
  border-radius: 0 60px 0 60px;
  overflow: hidden;
}
.about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-page-layout {
    flex-direction: column;
  }
  .about-page-image {
    order: -1;
    width: 100%;
  }
}

/* ---
   Overlay Section Stat
--- */
.overlay-section {
  position: relative;
  width: 100%;
  height: 230px;
  background-image: url('media/FBBY9562.JPEG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.overlay-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay-section .overlay-content {
  position: relative;
  z-index: 2;
  width: 90%;
}

.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 60px;
}

.stat-item h2 {
  font-size: 60px;
  color: #e5bb84;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.stat-item p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

@media(max-width: 768px) {
  .overlay-section {
    height: auto;
    padding: 60px 0;
    background-attachment: scroll;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .stat-item h2 {
    font-size: 42px;
  }

  .stat-item p {
    font-size: 16px;
  }
}

/* ---
   Special Product (Menu) Section
--- */
:root {
  --bg-color: #0f1113;
  --accent: #d4a373;
  --card-radius: 34px;
  --card-width-percent: 78%;
}

.special-product {
  background: var(--bg-color);
  color: #fff;
  padding: 80px 20px;
  font-family: "Poppins", system-ui, sans-serif;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.special-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  position: relative;
  width: 340px;
  aspect-ratio: 3/4.3;
  background: var(--bg-color);
  border-top-right-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card .image {
  position: absolute;
  inset: 0;
  background: var(--img) center/cover no-repeat;
  border-top-right-radius: var(--card-radius);
  z-index: 1;
  transition: transform 0.5s ease;
}

.product-card .card {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #222;
  width: var(--card-width-percent);
  border-top-right-radius: var(--card-radius);
  padding: 26px 28px;
  z-index: 2;
  text-align: left;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.card-head .dash {
  color: var(--accent);
  font-size: 18px;
}
.card-head h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.items {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px 0;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.price {
  margin-top: 6px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.price small {
  color: #777;
  font-weight: 400;
  margin-left: 6px;
  font-size: 13px;
}

.product-card:hover .image {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .product-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .product-card {
    width: 92%;
    max-width: 500px;
  }
  .product-card .card {
    width: 90%;
    padding: 20px;
    border-top-right-radius: 26px;
  }
}

/* ---
   Menu List Section
--- */
.menu-list-section {
  background: var(--bg);
  padding: 100px 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.menu-list-center {
  position: relative;
  width: fit-content;
  margin: auto;
}

.ml-photo-wrap {
  position: relative;
  width: 580px;
  height: 420px;
  margin: auto;
  z-index: 1;
  transform: translate(175px, -20px);
  opacity: 0;
}

.ml-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ml-pattern-top-left {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 130px;
  opacity: 0.8;
  z-index: 1;
}

.ml-pattern-bottom-right {
  position: absolute;
  bottom: -40px;
  right: -50px;
  width: 130px;
  opacity: 0.9;
  z-index: 3;
}

.ml-card {
  position: absolute;
  top: 20px;
  left: -160px;
  background: var(--card-bg);
  color: #111;
  border-radius: 10px;
  padding: 36px 34px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  width: 400px;
  z-index: 5;
  transform: translateY(50px);
  opacity: 0;
}

.ml-inner {
  display: block;
}
.ml-item {
  margin-bottom: 22px;
}
.ml-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ml-name {
  font-weight: 700;
  font-size: 16px;
}
.ml-price {
  color: var(--accent);
  font-weight: 700;
}
.ml-desc {
  margin-top: 4px;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

@media (max-width:900px) {
  .menu-list-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ml-photo-wrap {
    transform: none;
    opacity: 1; /* Ensure visible on mobile */
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 0 26px 0 0;
    overflow: hidden;
    margin: 0;
  }

  .ml-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 26px 0 0;
    background-size: cover;
    background-position: center;
  }

  .ml-card {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    padding: 24px;
    transform: none;
    opacity: 1; /* Ensure visible on mobile */
    border-radius: 0;
  }

  .ml-pattern-top-left {
    top: -20px;
    left: -10px;
    width: 70px;
  }
  .ml-pattern-bottom-right {
    bottom: -20px;
    right: -10px;
    width: 70px;
  }
}

/* ---
   Reservation Section
--- */
.reservation-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.reservation-section .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* NEW: Reservation Page Layout */
.reservation-page-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.reservation-left {
  flex: 1;
  color: #fff;
  min-width: 300px;
}

.reservation-left p {
  font-size: 16px;
  line-height: 1.6;
}

.reservation-right {
  flex: 1;
  position: relative;
  min-width: 300px;
  max-width: 550px;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: linear-gradient(to right, #E1BE8B, #edbd77);
  padding: 50px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 3px 8px rgba(255, 255, 255, 0.2);
}


.reservation-form h3 {
  grid-column: 1 / -1;
  margin: 0 0 20px 0;
  font-size: 22px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.reservation-form input,
.reservation-form select {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.reservation-form input:focus,
.reservation-form select:focus {
  outline: none;
  border-color: #d4a373;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.95);
}

.reservation-form button {
  grid-column: 1 / -1;
  padding: 15px;
  background-color: #fff;
  color: #e1be8b;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 2px 6px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.reservation-form button:hover {
  background-color: #f7f2eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .reservation-section .container,
  .reservation-page-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  
  .reservation-right {
    width: 100%;
    max-width: 100%;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 30px 20px;
    border-top-right-radius: 50px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* ---
   Testimonials Section
--- */
.testimonials-section {
  padding: 100px 0;
  background: #0d1518;
  text-align: center;
  overflow: hidden;
}

.testimonials-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-wrapper {
  margin-top: 50px;
  display: inline-block;
  background: #0d1518;
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 700px;
  position: relative;
  text-align: center;
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-name {
  font-weight: bold;
  color: #ffffff;
  font-size: 18px;
}

/* ---
   Video Section
--- */
.video-section {
  width: 100%;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 3px solid #E1BE8B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: transparent;
  font-size: 32px;
  color: #E1BE8B;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox .lightbox-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.video-lightbox iframe {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 36px;
  color: #E1BE8B;
  cursor: pointer;
  z-index: 10;
}

/* ---
   Recipes Section
--- */
.recipes-section {
  width: 100%;
  padding: 80px 0;
  background: #0B0E11;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.recipes-section .section-header {
  text-align: center;
  margin-bottom: 20px;
}

.spacer {
  height: 40px;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.recipe-card {
  background: #182226;
  text-align: center;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.recipe-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 20px;
}

.recipe-content {
  padding: 20px;
  text-align: left;
}

.recipe-content h4 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.recipe-content h4 a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
.recipe-content h4 a:hover {
  color: #d4a76a;
}

.recipe-content h6 {
  font-size: 14px;
  color: #bbb;
  font-weight: 400;
  line-height: 1.6;
}

/* NEW: News Meta Style */
.news-meta {
  font-size: 12px;
  color: #d4a76a;
  font-weight: 600;
  text-transform: uppercase;
}
.recipe-content .news-meta + h4 {
  margin-top: 5px;
}


.chef {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.chef img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.chef-name {
  color: #cb2f7d;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

@media (max-width: 900px) {
  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .recipes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---
   NEW: Chef Grid
--- */
.chef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.chef-card {
  background: #151a1e;
  text-align: center;
  border-radius: 0 40px 0 40px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.chef-card:hover {
  transform: translateY(-8px);
  background: #1e252b;
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}
.chef-image img {
  width: 100%;
  height: auto;
  display: block;
}
.chef-info {
  padding: 25px;
}
.chef-info h4 {
  color: #d4a76a;
  font-size: 22px;
  margin-bottom: 5px;
}
.chef-info span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.chef-info p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .chef-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .chef-grid {
    grid-template-columns: 1fr;
  }
}


/* ---
   NEW: Contact Page
--- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  color: #fff;
}
.contact-details h3 {
  color: #d4a76a;
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}
.contact-details p {
  font-size: 16px;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.7;
}
.contact-details p i {
  color: #d4a76a;
  margin-top: 6px;
  flex-shrink: 0;
}
.contact-form-wrapper {
  background: #151a1e;
  padding: 40px;
  border-radius: 0 40px 0 40px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #0b0f13;
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4a76a;
}
.contact-form textarea {
  resize: vertical;
}
.map-section {
  width: 100%;
  height: 400px;
  background: #111;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   Opening Hours Section
   ============================== */
.opening-hours-section {
  background-color: #0b0f13;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.opening-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.opening-card {
  background: #fff;
  border-radius: 40px 0 0 40px;
  padding: 50px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.opening-title {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  color: #e3c08d;
  margin-bottom: 30px;
}

.opening-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.opening-list li {
  display: flex;
  justify-content: space-between;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.opening-list li:last-child {
  border-bottom: none;
}

.opening-list li.closed span:last-child {
  color: #d9534f;
  font-weight: 600;
}

/* ========== Gallery Styling ========== */
.opening-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.gallery-top img,
.gallery-bottom img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-bottom {
  display: flex;
  gap: 20px;
}

.rounded-img {
  border-radius: 0 40px 0 0;
}

.top-left {
  border-radius: 0 80px 0 0;
}

.bottom-left {
  border-radius: 80px 0 0 0;
}

.bottom-right {
  border-radius: 0 0 80px 0;
}

/* ========== Decorative Lines (gold) ========== */
.opening-gallery::before,
.opening-gallery::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(227,192,141,0.3);
  width: 80px;
  height: 80px;
}

.opening-gallery::before {
  top: 10%;
  right: -20px;
}

.opening-gallery::after {
  bottom: 5%;
  right: 15%;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .opening-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .opening-card {
    border-radius: 30px;
    text-align: center;
  }

  .opening-gallery::before,
  .opening-gallery::after {
    display: none;
  }
}


/* ---
   NEW: FAQ Accordion
--- */
.faq-accordion {
  width: 100%;
}
.faq-item {
  background: #151a1e;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #222;
  overflow: hidden;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1a2228;
}
.faq-header h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
}
.faq-icon {
  font-size: 24px;
  color: #d4a76a;
  font-weight: 600;
  transition: transform 0.3s;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-content p {
  padding: 25px;
  margin: 0;
  color: #ccc;
  line-height: 1.7;
  border-top: 1px solid #222;
}
/* Active state for FAQ */
.faq-item.active .faq-content {
  max-height: 300px; /* Set a reasonable max-height */
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
/* Style for pre-opened item */
.faq-item.active .faq-content {
  /* JS will override this, but it's good for no-JS fallback */
  max-height: 300px; 
}


/* ---
   Newsletter Section
--- */
.newsletter-section {
  padding: 60px 0;
  background: #0D1518;
  position: relative;
  overflow: hidden;
}

.newsletter-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.newsletter-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.newsletter-title {
  flex: 1 1 30%;
  text-align: left;
}

.newsletter-input {
  flex: 1 1 40%;
}

.newsletter-input input {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.newsletter-submit {
  flex: 1 1 20%;
}

.newsletter-submit button {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  border: none;
  background-color: #edbd77;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.newsletter-submit {
  margin-left: 15px;
}

.newsletter-submit button:hover {
  background-color: #e1ac5b;
}

@media (max-width: 768px) {
  .newsletter-grid {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }

  .newsletter-title,
  .newsletter-input,
  .newsletter-submit {
    flex: 1 1 100%;
    width: 100%;
  }

  .newsletter-input input,
  .newsletter-submit button {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .newsletter-input {
    margin-bottom: 10px;
  }

  .newsletter-submit {
    margin-left: 0;
  }
}

/* ---
   Footer
--- */
footer {
  background: #0B0E11;
  color: #fff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-column {
  flex: 1;
}
.footer-col-1 {
  flex: 2;
  min-width: 300px;
}
.footer-col-2 {
  min-width: 150px;
  margin-left: 20px;
}
.footer-col-3 {
  min-width: 250px;
}




/* UPDATED: reservation.html */

/* ===========================
   Booking Process
   =========================== */
.booking-process-section {
  padding: 80px 20px;
  background: #0d1518;
  color: #0d1518;
}
.booking-process {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
.booking-step {
  background: #0d1518;
  padding: 28px 22px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.booking-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
.step-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: #0d1518;;
  color: #0b0f13;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  box-shadow: 0 6px 14px rgba(227,192,141,0.18);
}
.step-title {
  font-size: 18px;
  margin: 8px 0;
  color: #0d1518;;
  font-weight: 700;
}
.step-desc {
  font-size: 14px;
  color: #0d1518;;
  line-height: 1.6;
  margin-top: 8px;
}

/* ===========================
   Booking Step - Icon Version
   =========================== */
.booking-step {
  position: relative;
  text-align: center;
  background: #0d1518;
  padding: 30px 20px 40px;
  border-radius: 14px;
  transition: all .35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.booking-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

/* Lingkaran ikon di tengah (mengganti angka lama) */
.step-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3c08d, #d4a76a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 14px rgba(227,192,141,0.18);
  transition: all 0.3s ease;
}
.step-badge i {
  font-size: 28px;
  color: #0b0f13;
}
.booking-step:hover .step-badge {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f1d4a0, #e3c08d);
}

/* Nomor step di pojok kanan atas */
.step-number {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #e3c08d;
  color: #0b0f13;
  font-size: 14px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(227,192,141,0.3);
}

/* Judul dan deskripsi */
.step-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsif */
@media (max-width: 992px) {
  .booking-process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .booking-process {
    grid-template-columns: 1fr;
  }
  .step-badge {
    width: 60px;
    height: 60px;
  }
  .step-badge i {
    font-size: 24px;
  }
}


/* Make steps connected with a subtle line on wide screens */
.booking-process::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.03);
  transform: translateY(-12px);
  display: none; /* show only on large screens */
}

/* ===========================
   Recommendation: Private Dining
   =========================== */
.recommendation-section {
  padding: 80px 20px;
  background: #0b0f13;
  color: #fff;
}
.recommendation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.rec-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}
.rec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* create curve on left side: use large border-radius on left */
  border-radius: 30px 0 0 30px;
  transform: scale(1.02);
  transition: transform .6s ease, filter .5s ease;
  filter: saturate(1.05);
}
.rec-image:hover img {
  transform: scale(1.06) rotate(-0.6deg);
  filter: saturate(1.1) contrast(1.03);
}
.rec-content .rec-desc {
  color: #ccc;
  margin: 18px 0;
  line-height: 1.8;
  max-width: 640px;
}
.rec-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.rec-features li {
  color: #e8d9b8;
  font-weight: 600;
  background: rgba(227,192,141,0.06);
  padding: 10px 12px;
  border-radius: 8px;
}
.rec-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

/* ===========================
   Why Choose (Extra) Cards
   =========================== */
.why-choose-section {
  padding: 60px 20px 120px;
  background: linear-gradient(180deg,#0b0f13 0%, #070809 100%);
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.why-card {
  background: #0f1517;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  padding-bottom: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.why-card h4 {
  color: #e3c08d;
  margin: 12px 16px 6px;
}
.why-card p {
  color: #cfcfcf;
  margin: 0 16px 12px;
  font-size: 14px;
}

/* Responsive rules */
@media (max-width: 992px) {
  .booking-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .recommendation-grid {
    grid-template-columns: 1fr;
  }
  .rec-image img {
    border-radius: 20px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-process::before { display: none; }
}
@media (max-width: 600px) {
  .booking-process {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .booking-process::before { display: none; }
  .step-badge { margin: 0 auto 12px; }
  .step-desc { font-size: 15px; }
  .rec-features { grid-template-columns: 1fr; }
}




/* UPDATED: Font and color for footer logo */
.footer-logo {
  font-family: 'Dancing Script', sans-serif;
  color: #e3c08d;
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-column p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-link {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #333;
  border-radius: 50%;
  transition: 0.3s;
}
.social-link:hover {
  background: #ff7f00;
}
.footer-column h3 {
  margin-bottom: 15px;
}
.footer-links {
  list-style: none;
  padding: 0;
  line-height: 2;
}
.footer-links li a {
  color: #fff;
  text-decoration: none;
}
.footer-links li a:hover {
  color: #ff7f00;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-item svg {
  flex-shrink: 0;
}
.footer-copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}
@media (max-width: 768px) {
  .footer-col-2 {
    margin-left: 0;
  }
}