/* Basic reset and utilities */
* {box-sizing:border-box;margin:0;padding:0}
body {font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#222;line-height:1.45}
.container {max-width:1100px;margin:0 auto;padding:20px}

/* ===== NAVIGATION BAR ===== */
.site-header {
  background: #000; /* black navbar */
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff; /* white brand name */
}

.logo {
  height: 55px;
  width: auto;
  border-radius: 6px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.main-nav a {
  color: #f39c12; /* orange links */
  text-decoration: none;
  padding: 10px 8px;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.main-nav a:hover {
  color: #fff; /* white on hover */
}

/* Dropdown */
.main-nav .dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #111;
  border-radius: 4px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
 
}

/* Hide submenu by default */
.main-nav .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  /* optional: style to match your design */
  background: #fff;
  min-width: 200px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Show submenu when hovering anywhere over the li */
.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: #f39c12;
  padding: 10px 16px;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #f39c12;
  color: #000;
}

/* Contact Button */
.nav-cta .contact-btn {
  background: #f39c12; /* orange button */
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-cta .contact-btn:hover {
  background: #d35400; /* dark orange on hover */
  color: #fff;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: #f39c12;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    width: 200px;
    border-radius: 0 0 0 8px;
  }

  .main-nav.active ul {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}


/* Dropdown */
.dropdown{
    position:relative}
.dropdown-menu{
    position:absolute;
    left:0;top:110%;
    background:white;
    border:1px solid #ddd;
    padding:8px 0;
    display:none;
    min-width:220px}
.dropdown-menu li{
    padding:0}
.dropdown-menu a{
    display:block;
    padding:8px 16px}
.dropdown:hover .dropdown-menu{
    display:block}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  height: 60vh; /* increased height for more luxury feel */
  min-height: 550px;
  contain: paint; /* limit repaint scope */
}

.hero-carousel {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: none;
  transition: opacity 800ms ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-caption {
  position: absolute;
  left: 8%;
  bottom: 15%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 30px 40px;
  border-radius: 10px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slide-caption h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.slide-caption p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
  z-index: 3;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Pagination (Indicators) */
.carousel-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}


/* OFFER SECTION */
.offer {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #000000 0%, #2e1515 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 60px auto;
  overflow: hidden;
  
}

.offer-text {
  flex: 1;
}

.offer-text h2 {
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.offer-text .big {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f77a27;
  margin-bottom: 10px;
}

.offer-text p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.offer-text .btn {
  background: #ff950b;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.offer-text .btn:hover {
  background: #a63f00;
}

.offer-image img {
  max-width: 320px;
  border-radius: 12px;
  animation: rotatePizza 35s linear infinite;
  transform-origin: center;
}

/* 🍕 Rotation Animation */
@keyframes rotatePizza {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .offer {
    flex-direction: column;
    text-align: center;
  }
  .offer-image img {
    max-width: 250px;
    margin-top: 20px;
  }
}


/* WHY CHOOSE US - LUXURY DESIGN */
.why {
  background: linear-gradient(135deg, #ffffff 0%, #fffcf2 100%);
  padding: 10px 35px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/pattern.png") center/cover no-repeat;
  opacity: 0.08;
}

.why-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.why-text {
  flex: 1;
  max-width: 550px;
  animation: fadeInUp 1.5s ease both;
}

.why-text h2 {
  font-size: 2.4rem;
  color: #1f1f1f;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-text h2 span {
  color: #ffa115;
}

.why-text .intro {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.features li i {
  color: #c87b31;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.features li:hover i {
  transform: scale(1.2);
}

.features li:hover {
  transform: translateX(5px);
}

.why-text .btn {
  background: #ffa115;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(200,123,49,0.3);
}

.why-text .btn:hover {
  background: #eb963c;
  transform: translateY(-2px);
}

/* Image Section */
.why-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.5s ease both;
}

.why-image img {
  width: 440px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
}

.why-image img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .why-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .why-text {
    max-width: 100%;
  }

  .why-image img {
    width: 320px;
    margin-bottom: 25px;
  }
}


/* FLAVOR SECTION */
.flavors {
  padding: 60px 20px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  text-align: center;
}

.flavors::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.flavors .container {
  position: relative;
  z-index: 2;
}

.flavors h2.center {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #ffda99;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-weight: 900;
}

.flavor-carousel {
  position: relative;
  overflow: hidden;
}

.flavor-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.flavor-group {
  display: flex;
  gap: 20px;
  min-width: 100%;
  justify-content: center;
}

.flavor-item {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.08);
  padding: 12px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  height: 360px;  /* Increased from default */
}

.flavor-item:hover {
  transform: scale(1.05);
}

.flavor-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.flavor-desc {
  font-size: 1rem;
  font-weight: 500;
  color: #ffe8c6;
}

/* Arrows */
.flavor-prev, .flavor-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 3;
  transition: background 0.3s;
}

.flavor-prev:hover, .flavor-next:hover {
  background: rgba(255,255,255,0.4);
}

.flavor-prev { left: 10px; }
.flavor-next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  .flavor-group {
    flex-wrap: wrap;
  }
  .flavor-item {
    flex: 1 1 calc(50% - 20px);
  }
}

/* --- Accommodation Modern & Creative --- */
.accommodation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 80px 20px;
  background: linear-gradient(145deg, #fdfcac 0%, #f2e9e4 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* Decorative overlay for style depth */
.accommodation::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(255, 154, 14, 0.2), transparent 70%);
  z-index: 0;
}

.accom-col {
  flex: 1;
  position: relative;
  z-index: 1;
}

.accom-col.center {
  text-align: center;
  padding: 0 20px;
}

.accom-col.center h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.accom-col.center h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  font-style: italic;
}

.accom-col.center p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.accom-col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.accom-col img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

/* --- Modern Button --- */
.btn-modern {
  display: inline-block;
  background: linear-gradient(135deg, #ffb95c, #f08903);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-modern:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f08903, #ffb95c);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* --- Smooth Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-up { animation: fadeUp 1s ease forwards; }
.fade-left { animation: fadeLeft 1s ease forwards; }
.fade-right { animation: fadeRight 1s ease forwards; }

/* --- Responsive Design --- */
@media (max-width: 900px) {
  .accommodation {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  .accom-col img {
    height: 260px;
  }
}



/* --- Popular Items Modern Redesign --- */
.popular {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fdfcac 0%, #f7efe7 100%);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  margin: 60px auto;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: #2c2c2c;
  margin-bottom: 5px;
  letter-spacing: 0.6px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 40px;
  font-style: italic;
}

/* Grid layout preserved */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 10px 0;
}

/* Modern card look */
.popular-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.popular-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(212,161,93,0.15), rgba(255,215,160,0.25));
  transition: width 0.4s ease;
  z-index: 0;
  border-radius: 12px;
}

.popular-item:hover::before {
  width: 100%;
}

.popular-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.popular-img {
  flex-shrink: 0;
  z-index: 1;
}

.popular-img img {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.popular-item:hover .popular-img img {
  transform: scale(1.08);
}

.popular-content {
  text-align: left;
  z-index: 1;
}

.popular-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 6px;
}

.popular-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }

  .popular-item {
    flex-direction: column;
    text-align: center;
  }

  .popular-img img {
    width: 100%;
    height: 200px;
  }

  .popular-content {
    text-align: center;
  }
}

/* ===== Modern Reservation Section ===== */
.reservation-section {
  width: 100%;
  color: #fff;
  background: #000;
  overflow: hidden;
}

.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 150px;
}

/* ===== Left Column - Full YouTube Video ===== */
.reservation-video {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.video-wrapper {
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  filter: brightness(70%) contrast(110%) saturate(120%);
  transition: filter 0.4s ease;
}

.video-wrapper iframe:hover {
  filter: brightness(85%) contrast(115%) saturate(130%);
}

/* ===== Right Column - Reservation Form ===== */
.reservation-form-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 40%, #1a1a1a 100%);
  padding: 80px 40px;
  overflow: hidden;
}

/* Floating Decorative Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(45px);
  animation: float 8s infinite ease-in-out alternate;
}

.shape1 {
  width: 220px;
  height: 220px;
  top: 15%;
  left: -80px;
  background: #ff9f43;
}

.shape2 {
  width: 280px;
  height: 280px;
  bottom: 15%;
  right: -100px;
  background: #ff6f00;
}

/* Reservation Box */
.reservation-box {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 45px 35px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
  z-index: 3;
  animation: slideUp 1.2s ease forwards;
}

.reservation-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffb347, #ff6f00);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.reservation-box p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* ===== Form ===== */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.reservation-form input:focus,
.reservation-form textarea:focus {
  background: rgba(255,255,255,0.25);
  border-color: #ff9f43;
  box-shadow: 0 0 10px rgba(255,159,67,0.5);
  outline: none;
}

/* Button */
.reservation-form .btn {
  background: linear-gradient(135deg, #ff9f43, #ff6f00);
  border: none;
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.reservation-form .btn:hover {
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(255,140,0,0.4);
}

/* ===== Animations ===== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.1); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .reservation-container {
    grid-template-columns: 1fr;
  }

  .reservation-video {
    height: 45vh;
  }

  .reservation-form-column {
    padding: 60px 20px;
  }
}


/* ===== Reviews Section ===== */
.reviews {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #d35400;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Carousel Layout */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.quote-icon {
  color: #d35400;
  font-size: 30px;
  margin-bottom: 14px;
}

.review-card blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 12px 0 20px;
  min-height: 70px;
}

/* Star Ratings */
.star-rating {
  margin-bottom: 15px;
}

.star-rating i {
  color: #e0e0e0;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.7);
}

.star-rating i.filled {
  animation: starGlow 0.6s ease forwards;
}

@keyframes starGlow {
  0% {
    color: #e0e0e0;
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    color: #f1c40f;
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    color: #f1c40f;
    opacity: 1;
    transform: scale(1);
  }
}

.review-card .author {
  font-weight: 700;
  color: #d35400;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Navigation Buttons */
.review-prev, .review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(211,84,0,0.8);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.review-prev:hover, .review-next:hover {
  background: #d35400;
  transform: translateY(-50%) scale(1.1);
}

.review-prev { left: 15px; }
.review-next { right: 15px; }

/* Responsive */
@media (max-width: 992px) {
  .review-card { flex: 0 0 calc(50% - 20px); }
}

@media (max-width: 600px) {
  .review-card { flex: 0 0 100%; }
  .review-prev, .review-next { display: none; }
}



/* FOOTER */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #1b1b1b 0%, #2e2e2e 100%);
  color: #f5f5f5;
  padding: 60px 20px 20px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('images/footer-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-col h3.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff7b00;
  letter-spacing: 1px;
}

.footer-col h3.footer-logo span {
  color: #fff;
}

.footer-col p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ff7b00;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #ff7b00;
  bottom: -5px;
  left: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer-col ul li a:hover {
  color: #ff7b00;
  transform: translateX(4px);
}

.footer-col p i {
  color: #ff7b00;
  margin-right: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
  background: #ff7b00;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 15px;
  z-index: 2;
  position: relative;
}

/* Responsive */
@media(max-width:900px){
  .main-nav ul{display:none}
  .nav-toggle{display:block}
  .offer{flex-direction:column}
  .why-inner{flex-direction:column}
  .accommodation{flex-direction:column}
  .reservation{flex-direction:column}
  .footer-grid{flex-direction:column}
  .popular-grid{grid-template-columns:1fr}
  .flavor-group{flex-direction:column}
}


/* Scroll to Top Button */

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff7b00;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1000;
}
/* ===== Accommodation Banner ===== */
.accommodation-banner {
  position: relative;
  background: url('../images/sleep2.jpeg') center/cover no-repeat;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.accommodation-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* 50% black overlay */
}

.banner-overlay {
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease;
}

.banner-overlay h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-overlay p {
  font-size: 1.3rem;
  color: #ffb26b;
  letter-spacing: 1px;
}

/* ===== Room Sections ===== */
.room-section {
  padding: 100px 8%;
  background: #fff;
}

.room-section.alt {
  background: #f8f8f8;
}

.room-container {
  display: flex;
  align-items: stretch; /* keeps equal height */
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.room-section.alt .room-container {
  flex-direction: row-reverse;
}

.room-image, .room-details {
  flex: 1;
  min-width: 300px;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
}

.room-image img:hover {
  transform: scale(1.03);
}

.room-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-details h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}

.room-details h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #d35400;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.room-details p {
  color: #555;
  line-height: 1.7;
  margin-top: 10px;
}

.price {
  font-weight: 700;
  color: #d35400;
  margin-top: 15px;
  font-size: 1.2rem;
}

/* Amenities List */
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.amenities-list li i {
  color: #d35400;
  font-size: 1.1rem;
}

.amenities-list li:hover {
  color: #ff7b00;
}

/* Room Gallery */
.room-gallery {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.room-gallery img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.room-gallery img:hover {
  transform: scale(1.05);
}

/* Button */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, #d35400, #e67e22);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  background: linear-gradient(45deg, #e67e22, #d35400);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Animation */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .room-container {
    flex-direction: column;
  }

  .accommodation-banner {
    height: 50vh;
  }

  .banner-overlay h1 {
    font-size: 2.4rem;
  }
}


/* =========================
   CONTACT PAGE STYLES
========================= */

/* ===== CONTACT HERO ===== */
.contact-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  text-align: center;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.contact-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  inset: 0;
}
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}
.contact-hero h1 {
  font-size: 3.2rem;
  letter-spacing: 1px;
}
.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main {
  background: linear-gradient(135deg, #f9f9f9 50%, #ffffff 50%);
  padding: 80px 20px;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT DETAILS */
.contact-details {
  flex: 1;
  min-width: 340px;
}
.contact-details h2 {
  color: #222;
  font-size: 2rem;
  margin-bottom: 10px;
}
.contact-details p {
  color: #555;
  line-height: 1.6;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.info-list li {
  margin-bottom: 12px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.info-list i {
  color: #e67e22;
  font-size: 1.2rem;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  color: #fff;
  background: #e67e22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #faa458;
  transform: translateY(-3px);
}
.contact-img {
  margin-top: 30px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* RIGHT FORM */
.contact-form {
  flex: 1;
  min-width: 340px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.contact-form h2 {
  margin-bottom: 25px;
  color: #222;
  font-size: 1.8rem;
  text-align: center;
}
.form-group {
  position: relative;
  margin-bottom: 25px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: none;
  font-size: 1rem;
  transition: border 0.3s;
}
.form-group label {
  position: absolute;
  top: 12px;
  left: 14px;
  color: #777;
  pointer-events: none;
  transition: 0.3s;
}
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 10px;
  background: #fff;
  padding: 0 5px;
  font-size: 0.8rem;
  color: #e67e22;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #e67e22;
}
.btn-primary {
  width: 100%;
  background: #e67e22;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #faa458;
}

/* MAP AREA */
.map-area {
  margin-top: 60px;
}
.map-area iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-hero h1 {
    font-size: 2.4rem;
  }
}


/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}
.whatsapp-float i {
  line-height: 0;
}

/* Optional subtle pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
  animation: pulse 2s infinite;
}


/* ===== Modern Gallery Page ===== */
.gallery-banner {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}
.gallery-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}
.gallery-banner .overlay {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  border-radius: 10px;
  animation: fadeInDown 1.2s ease;
}
.gallery-banner h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.gallery-banner p {
  font-size: 1.25rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Fade animation for banner text */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #fafafa, #f0f3f5);
  text-align: center;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}
.section-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 2rem;
  color: #fff;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.gallery-overlay i:hover {
  transform: scale(1.25);
  color: #00d47f;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.close {
  position: absolute;
  top: 20px; right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}
.close:hover {
  color: #00d47f;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* ===== MENU PAGE STYLES ===== */

/* Menu Hero Section */
.menu-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.menu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.menu-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  animation: slideDown 0.8s ease;
}

.menu-hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menu Section */
.menu-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.menu-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.menu-section .subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Menu Tabs (Filter Buttons) */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border: 2px solid #ddd;
  background: white;
  color: #333;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #ff8177;
  color: #ff8177;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #ff8177;
  color: white;
  border-color: #ff8177;
  box-shadow: 0 4px 12px rgba(255, 129, 119, 0.3);
}

/* Menu Container */
.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Menu Grid - Compact Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.menu-grid.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Menu Item Card - Compact */
.menu-item-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.menu-item-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-card:hover img {
  transform: scale(1.08);
}

.menu-item-card .content {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
}

.menu-item-card p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.3;
  flex-grow: 1;
}

.menu-item-card .price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff8177;
  display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 15px;
  }

  .menu-hero-content h1 {
    font-size: 2.2rem;
  }

  .menu-hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 40px 15px;
  }

  .menu-section .section-title {
    font-size: 1.8rem;
  }

  .menu-tabs {
    gap: 10px;
    margin-bottom: 30px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .menu-item-card img {
    height: 120px;
  }

  .menu-item-card .content {
    padding: 10px;
  }

  .menu-item-card h4 {
    font-size: 0.85rem;
  }

  .menu-item-card p {
    font-size: 0.75rem;
  }

  .menu-item-card .price {
    font-size: 0.8rem;
  }

  .menu-hero {
    height: 300px;
  }

  .menu-hero-content h1 {
    font-size: 1.8rem;
  }

  .menu-hero-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 30px 10px;
  }

  .menu-section .section-title {
    font-size: 1.5rem;
  }

  .menu-tabs {
    gap: 8px;
    margin-bottom: 20px;
  }

  .tab-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .menu-item-card img {
    height: 100px;
  }

  .menu-item-card .content {
    padding: 8px;
  }

  .menu-item-card h4 {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .menu-item-card p {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .menu-item-card .price {
    font-size: 0.75rem;
  }

  .menu-hero {
    height: 250px;
  }

  .menu-hero-content h1 {
    font-size: 1.4rem;
  }

  .menu-hero-content p {
    font-size: 0.8rem;
  }
}

/* ===== ABOUT PAGE MODERN STYLING ===== */

/* HERO */
.about-hero {
  position: relative;
  height: 75vh;
  background: url('../images/AboutBG.JPG') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}
.about-hero h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}
.about-hero span {
  color: #ffb347;
}
.about-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* STORY */
.about-story {
  padding: 80px 10%;
  background: #fafafa;
  color: #333;
}
.story-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.story-text {
  flex: 1 1 50%;
}
.story-text h2 {
  color: #ff6f00;
  font-size: 2rem;
  margin-bottom: 15px;
}
.story-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}
.story-image {
  flex: 1 1 45%;
}
.story-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.story-image img:hover {
  transform: scale(1.03);
}

/* WHY STAY */
.why-choose {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fdf3e7 100%);
}
.why-choose h2 {
  color: #ff6f00;
  font-size: 2rem;
  margin-bottom: 10px;
}
.why-choose .subtitle {
  color: #666;
  margin-bottom: 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.feature-box i {
  font-size: 2rem;
  color: #ffb347;
  margin-bottom: 10px;
}
.feature-box:hover {
  transform: translateY(-8px);
  background: #ffb347;
  color: #fff;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  padding: 80px 10%;
  background: url('images/pizzaBG.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.testimonials .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.testimonials h2 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: #ffb347;
  margin-bottom: 40px;
}
.testimonial-slider {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial {
  animation: fadeIn 1s ease;
}
.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial h4 {
  color: #ffb347;
}

/* SUSTAINABILITY */
.sustainability {
  background: #fff;
  padding: 80px 10%;
}
.sustain-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.sustain-text {
  flex: 1 1 50%;
}
.sustain-text h2 {
  color: #ff6f00;
  margin-bottom: 15px;
}
.sustain-text p {
  color: #555;
  line-height: 1.7;
}
.sustain-image {
  flex: 1 1 45%;
}
.sustain-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* CTA */
.cta-section {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(90deg, #ffb347, #ff6f00);
  color: #fff;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cta-section p {
  margin-bottom: 25px;
}
.btn-book {
  background: #fff;
  color: #ff6f00;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-book:hover {
  background: #333;
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Responsive */
@media (max-width: 768px) {
  .story-inner, .sustain-content { flex-direction: column; }
  .about-hero h1 { font-size: 2.2rem; }
  .why-choose h2 { font-size: 1.8rem; }
}

