/* ===================================
   QUOTE SECTION
   =================================== */
.quote-container {
}

.citation {
  color: #3d4785;
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 700;
  margin-bottom: clamp(30px, 5vw, 50px);
  line-height: 1.2;
}

.quote-wrapper {
    margin: 9vw;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.quote-mark-left {
}

.quote-mark-right {
  align-self: self-end;
}

.quote-text {
  font-size: max(30px,5vw);
  line-height: 1.4;
  text-align: center;
  margin-left: 3.4vw;
}

/* gallery styles */
.gallery-section {
  margin: 3em;
}
.gallery {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  grid-gap: 15px;
  align-items: stretch;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.gallery-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}

.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bottom-row {
  height: 100%;
}

/* Booking Section */
.booking-section {
  background: var(--primary-yellow); /* yellow background */
  text-align: center;
  padding: 80px 20px;
}

.booking-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.booking-section p {
  max-width: 70vw;
  margin: 10px auto;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
}

.booking-section .btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background: var(--primary-red);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.2em;
  transition: background 0.3s ease;
}

.booking-section .btn:hover {
  background: var(--primary-red)
}

/* Facilities Grid */
.facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    padding: 40px 5vw;
    background: var(--primary-yellow);
    padding-bottom: 8em;
}

.facility-card {
  background: #efede594;
  border-radius: 3vw;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
}
.facility-txt {
  padding: 4vw;
}
.facility-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.facility-card h3 {
  margin: 5px 0;
  font-size: max(20px,2vw);
  font-weight: bold;
  color: #333;
}

.facility-card p {      
  font-size: max(18px, 1.6vw);
    color: #444;
    /* margin: 0 15px 20px; */
}

.facility-card .card-btn {
  margin: auto 0 20px;
  padding: 10px 20px;
  width: 60%;
  background: #f9d94d;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.facility-card .card-btn:hover {
  background: #e8c742;
}

@media screen and (max-width: 768px) {
  .second-content {
    height: auto;
    padding: 0;
  }
  .second-content-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .gallery {
    display: none;
  }
  .gallery-section {
    display: none;
  }
  .booking-section {
    padding: 40px 10px;
  }
  .facilities {
    grid-template-columns: repeat(2, 1fr)
  }
   .booking-section p {
    max-width: 80vw;
}
}

@media screen and (max-width: 430px) {
    .facilities {
    grid-template-columns: repeat(1, 1fr)
  }
  .booking-section p {
    max-width: 90vw;
}
.quote-text {
    font-size: max(20px, 5vw);
}
.quote-wrapper svg {
  height: 35;
}
}