/* ==============================
   GLOBAL RESET & BODY
   ============================== */
body,
html {
  margin: 60px 0 0 0; /* prevent overlap with fixed header */
  padding: 0;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ==============================
   HERO / EVENT SECTION
   ============================== */
.event-section {
  color: #11184A;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-content {
  max-width: 1200px;
}

.event-content h2 {
  font-size: 2.9rem;
  font-weight: 700;
  color: #11184A;
  margin-bottom: 20px;
  line-height: 1.3;
}

.event-content h3 {
  font-size: 1.2rem;
  color: #11184A;
  margin: 10px 0 30px;
  line-height: 1.6;
}

/* Button */
.rental-button {
  display: inline-block;
  background-color: #FCE570;
  color: #000;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rental-button:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ==============================
   INFO SECTION
   ============================== */
.info-section {
  background: #fff;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Center everything */
  flex-wrap: wrap;
  gap: 40px; /* Space between boxes */
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 70px;
  border-radius: 40px;
  text-align: center; /* Center text inside */
}

/* All info-title + info-box centered */
.info-title {
  flex: 0 1 100%;
  padding: 20px;
}

.info-title h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #11184A;
  line-height: 1.3;
  text-align: center;
}

.info-title p {
  font-size: 1rem;
  color: #11184A;
  line-height: 1.7;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
}

/* Info boxes row centered */
.info-content {
  flex: 0 1 100%;
  display: flex;
  justify-content: center; /* Center all boxes */
  flex-wrap: wrap;
  gap: 25px;
}

.info-box {
  background: #FCE570;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 0 1 150px; /* Set fixed width */
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-box i {
  font-size: 2rem;
  color: #11184A;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 1rem;
  color: #11184A;
  font-weight: 700;
  line-height: 1.5;
}

/* ==============================
   RENTAL ROOMS SECTION
   ============================== */
.rental-rooms-section {
  padding: 80px 5%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.rental-rooms-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.rental-room {
  margin-bottom: 80px;
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
}

.room-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
  color: #11184A;
}

/* Grid layout */
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "gallery shortdesc"
    "details rate";
  gap: 22px 28px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid areas */
.grid-gallery { grid-area: gallery; }
.grid-shortdesc { grid-area: shortdesc; }
.grid-details { grid-area: details; }
.grid-rate { grid-area: rate; }

/* Gallery */
.room-gallery.gallery {
  background: #f8f8f8;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}

.gallery-cell {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-cell img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
}

/* Short description */
.grid-shortdesc .room-short-description {
  font-size: 1.8rem;
  line-height: 1.3;
  color: #11184A;
  margin: 50px;
  display: flex;
  align-items: center;
  min-height: 100%;
  text-align: justify;
}

/* Room details */
.room-content {
  background: transparent;
  padding: 0;
}

.room-description {
  font-size: 1.5rem;
  color: #11184A;
  line-height: 1.7;
  margin: 0;
}

.room-line {
  width: 100%;
  height: 2px;
  background: #11184A;
  margin: 18px 0;
}

.room-meta p,
.room-ideal p,
.room-features p {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: #11184A;
}

.room-meta strong,
.room-ideal strong,
.room-features strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
  font-size: 1.5rem;
}

.room-content ul {
  list-style: disc;
  margin: 10px 0 10px 20px;
  padding: 0;
}

.room-content li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* Rate card */
.room-card {
  background: #FCE570;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(12, 12, 12, 0.06);
  text-align: left;
  height: 300px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:10px
}

.room-rate {
  margin-bottom: 2px;
}

.room-rate strong {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #11184A;
}

.room-rate p {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
  line-height: 1.4;
  white-space: pre-line;
}

/* Contact button */
.room-contact-btn {
  display: inline-block;
  background: #e0b341;
  color: #fff;
  text-decoration: none;
  padding: 20px;
  border-radius: 40px;
  font-weight: 600;
  width: 200px;
  text-align: center;
  transition: background 0.3s ease;
}

.room-contact-btn:hover {
  background: #c99c2f;
}

/* Flickity dots */
.flickity-page-dots {
  bottom: -26px;
}

.flickity-page-dots .dot {
  background: #e0b341;
  opacity: 0.5;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* ==============================
   RESPONSIVE MEDIA QUERIES
   ============================== */

/* Tablet & below */
@media (max-width: 990px) {
  .room-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "shortdesc"
      "details"
      "rate";
  }

  .gallery-cell img {
    height: 320px;
  }

  .grid-shortdesc { order: 2; }
  .grid-details { order: 3; }
  .grid-rate { order: 4; }

  .room-card {
    margin-top: 12px;
  }

  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-content {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile & below */
@media (max-width: 768px) {
  .event-content h2 { font-size: 2.2rem; }
  .event-content h3 { font-size: 1.2rem; }

  .rental-button { margin: 20px auto 0; display: block; }

  .room-title { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .event-section { padding: 60px 20px;}
  .info-container {
    gap: 20px;
    padding: 30px 20px;
  }
  .info-title h2 { font-size: 20px; margin-bottom: 20px; }
  .info-title p { font-size: 0.9rem; margin-top: 15px; font-weight: 500; }

  .gallery-cell img { height: 220px; }
  .grid-shortdesc .room-short-description {         margin: 20px;
        font-size: 1.2rem;
        text-align: center; }
  .room-description { font-size: 1.3rem; }
  .room-rate strong { font-size: 2.2rem; }
  .room-rate p { font-size: 1.1rem; }
  .room-contact-btn { width: 160px; padding: 16px; font-size: 0.95rem; }
}
