/* ================= HERO ================= */

.dining-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.dining-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-overlay h1 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  max-width: 900px;
  line-height: 1.3;
}

/* ================= INTRO ================= */

.dining-intro {
  text-align: center;
  padding: 140px 20px;
  max-width: 760px;
  margin: auto;
}

.dining-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 24px;
}

.dining-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: #6f6f6f;
}

/* ================= GRID ================= */

.dining-grid-section {
  padding: 0 20px 200px;
}

.dining-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px 60px;
}

.dining-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 22px;
  transition: transform 0.6s ease;
}

.dining-item:hover img {
  transform: scale(1.05);
}

.dining-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 400;
}

.dining-item p {
  font-size: 14px;
  color: #6f6f6f;
  margin-bottom: 14px;
}

.dining-item a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1c1c1c;
}

/* ================= FULL IMAGE ================= */

.dining-full-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* ================= CTA ================= */

.dining-cta {
  padding: 180px 20px;
  text-align: center;
  background: #f5f3ee;
}

.dining-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 400;
}

.dining-btn {
  display: inline-block;
  padding: 16px 48px;
  border: 1px solid #1c1c1c;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

.dining-btn:hover {
  background: #1c1c1c;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .dining-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .dining-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay h1 {
    font-size: 30px;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 90px;
}

.section-header span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  margin-top: 20px;
}
/* ================= DINING EXPERIENCES ================= */

.dining-experiences {
  padding: 160px 20px 200px;
}

.section-header {
  text-align: center;
  margin-bottom: 100px;
}

.section-header span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 400;
  margin-top: 20px;
}

.experiences-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 70px;
}

.experience-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  margin-bottom: 24px;
  transition: transform 0.6s ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

.experience-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.experience-card a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
}

.experience-card a:hover {
  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .experiences-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= HERO – SURYAGARH STYLE ================= */

.dining-hero-wrapper {
  padding: 60px 40px 0;   /* breathing space from header */
}

.dining-hero-inner {
  position: relative;
  max-width: 2400px;
  margin: 0 auto;
  height: 90vh;          /* not full height */
  overflow: hidden;
}

.dining-hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  max-width: 850px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.hero-overlay span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Responsive */

@media (max-width: 900px) {
  .dining-hero-wrapper {
    padding: 40px 20px 0;
  }

  .dining-hero-inner {
    height: 60vh;
  }

  .hero-overlay h1 {
    font-size: 28px;
  }
}
/* ==================================
   IPAD FIX – SQUARE IMAGES
================================== */

@media (min-width: 768px) and (max-width: 1000px) {

  /* DINING GRID */
  .dining-item img {
    height: auto;
    aspect-ratio: 1 / 1;   /* makes it square */
  }

  .dining-grid {
    gap: 70px 40px;   /* slightly tighter */
  }

  /* EXPERIENCES GRID */
  .experience-card img {
    height: auto;
    aspect-ratio: 1 / 1;   /* square */
  }

  .experiences-grid {
    gap: 80px 50px;
  }

}