/* =====================================
   DINING PAGE STYLES
   Sunday London Croydon Aerodrome Hotel
===================================== */

@import url('styles.css');

/* Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  max-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--header-height);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(43, 78, 114, 0.45), rgba(212, 163, 115, 0.35));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 15px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 25px;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Overview Section */
.overview-section {
  padding: 70px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.overview-container {
  max-width: 900px;
  margin: 0 auto;
}

.overview-divider {
  width: 90px;
  height: 3px;
  background: var(--accent-color);
  margin: 25px auto;
}

/* Dining Venues */
.dining-venues-section {
  padding: 70px 20px;
}

.venue-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.venue-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-8px);
}

.venue-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.venue-card p {
  font-family: 'Lora', serif;
  line-height: 1.7;
}

/* Breakfast Info */
.breakfast-info {
  max-width: 700px;
  margin: 50px auto 0;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  text-align: center;
}

.breakfast-info h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
  padding: 70px 20px;
  background-color: #f0f4f8;
  text-align: center;
}

.gallery-container {
  max-width: 1200px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-dark);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-container p {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  margin-bottom: 25px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 55vh;
  }

  .hero-content {
    padding: 25px 20px;
  }

  .venue-container {
    grid-template-columns: 1fr;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 220px;
  }
}


.restaurant-menus-section {
  padding: 90px 20px;
  text-align: center;
  background: #fff;
}

.restaurant-menus-section h2 {
  margin-bottom: 15px;
}

.menus-intro {
  max-width: 700px;
  margin: 0 auto 50px;
}

.menus-grid {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.menu-card {
  text-decoration: none;
  color: inherit;

  background: #fff;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 8px 25px rgba(0,0,0,.12);

  transition: .3s;
}

.menu-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.menu-card img {
  width: 100%;

  display: block;
}

.menu-card h3 {
  padding: 18px;

  font-family: "Playfair Display", serif;

  color: var(--secondary-color);
}