/* =========================================
   UNIVERSAL SECTION HEADING
========================================= */

.section-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 70px;
  text-align: center;
  position: relative;
 color: #1c1c1c; 
}

.section-title::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #b48a4c;
  display: block;
  margin: 18px auto 0;
}


/* =========================================
   HOTELS SECTION (Used on index + hotel pages)
========================================= */

.hotels-section {
  padding: 140px 0;
  background: #ffffff;
  text-align: center;
}

.hotels-container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}


/* =========================================
   GRID
========================================= */

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}


/* =========================================
   CARD DESIGN
========================================= */

.hotel-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.hotel-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.6s ease;
}

.hotel-card:hover img {
  transform: scale(1.05);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.hotel-content {
  padding: 30px;
}

.hotel-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hotel-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}


/* =========================================
   BUTTON
========================================= */

.btn-dark {
  display: inline-block;
  padding: 10px 22px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  border-radius: 4px;
}

.btn-dark:hover {
  background: #333;
}


/* =========================================
   HOTEL HERO
========================================= */

.hotel-hero {
  position: relative;
  height: 80vh;
  background: url("../images/majestic/majestic1.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hotel-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hotel-hero .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hotel-hero .hero-content h2 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hotel-hero .hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}


/* =========================================
   GALLERY
========================================= */

.gallery {
  padding: 140px 0;
  background: #f9f9fb;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.5s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.gallery-grid img:hover {
  transform: scale(1.04);
}


/* =========================================
   AMENITIES
========================================= */

.amenities {
  padding: 120px 0;
  background: #ffffff;
  text-align: center;
}

.amenities ul {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenities li {
  background: #f5f5f7;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: 0.3s ease;
}

.amenities li:hover {
  transform: translateY(-4px);
  background: #ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities ul {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 700px) {

  .hotels-grid,
  .gallery-grid,
  .amenities ul {
    grid-template-columns: 1fr;
  }

  .hotel-hero {
    height: 60vh;
  }

  .hotel-hero .hero-content h2 {
    font-size: 32px;
  }

  .hotel-hero .hero-content p {
    font-size: 15px;
  }

}

/* =========================================
   SECTION BACKGROUND VARIATIONS
========================================= */

.section-light {
  padding: 140px 0;
  background: #f9f9fb;
}

.section-white {
  padding: 140px 0;
  background: #ffffff;
}

.section-dark {
  padding: 140px 0;
  background: linear-gradient(135deg, #2d2a4a, #3c3763);
  color: #ffffff;
}

/* Make headings white in dark section */
.section-dark .section-title {
  color: #ffffff;
}

.section-dark .section-title::after {
  background: #d4af37;
}

/* =========================================
   DINING SECTION (SIDE LAYOUT)
========================================= */

.dining-section {
  padding: 160px 0;
}

.dining-wrapper {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.dining-text {
  text-align: left;
}

.dining-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.left-align {
  text-align: left !important;
}

.left-align::after {
  margin-left: 0;
}

.dining-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dining-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dining-gallery img:hover {
  transform: scale(1.04);
}


/* =========================================
   AMENITIES SECTION (SIDE LAYOUT - DARK)
========================================= */

.amenities-section {
  padding: 160px 0;
}

.section-dark .amenities-text p {
  color: #e6e6e6;
}

.section-dark .amenity-item p {
  color: #ffffff;
}

.section-dark .amenity-item span {
  font-size: 22px;
}

.amenities-wrapper {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  padding: 12px 0;
}


.gallery-section .section-title {
  color: #2d2a4a;   /* Deep royal tone */
  font-weight: 600;
}
