/* ----------------------------------------------- */
/* ---------------- INITIAL SETUP ---------------- */
/* ----------------------------------------------- */

:root {
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #fafafa;
  font-size: 18px;
}

h4 {
  font-style: normal;
  font-weight: 600;
  line-height: 162.69%;
  color: #241e09;
  padding: 5px 0;
  font-size: 24px;
}

/* ----------------------------------------------- */
/* -------------------- LAYOUT ------------------- */
/* ----------------------------------------------- */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 1.5rem 0.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  padding: 10px;
  flex-wrap: nowrap;
}

.center-lg {
  justify-content: center;
}

/* ----------------------------------------------- */
/* ---------------- HEADER SECTION --------------- */
/* ----------------------------------------------- */
.page-header-container {
  margin-bottom: 70px;
}

.page-header {
  margin-top: 10px;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}

hr {
  border-top: 1.5px solid #d4af37;
  width: 104px;
  margin: 0.5rem auto 1rem;
}

.page-sub-header {
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 300;
  color: #3b331a;
}

.facilities-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
  color: #3b331a;
  line-height: 1.55;
}
/* ----------------------------------------------- */
/* ----------- Upper SECTION ------------ */
/* ----------------------------------------------- */
.upper-section {
  padding: 0 0 80px;
}

.right-title {
  font-size: 165%;
  font-weight: 600;
  margin: 25px 0 15px;
  line-height: 45px;
  letter-spacing: 0.01em;
}

.right-sub-title {
  font-size: 74%;
  color: #3b331a;
  font-weight: 300;
  margin-bottom: 20px;
}

.right-title-content {
  max-width: 560px;
  line-height: 1.55;
  color: #3b331a;
}

.facilities-list {
  list-style: none;
  margin-bottom: 30px;
}

.facilities-list li {
  margin: 12px 0;
}

.list-icon {
  height: 17px;
  vertical-align: middle;
  margin-right: 5px;
}

.list-text {
  display: inline-block;
  font-size: 17px;
}

.btn {
  border-radius: 3px;
  border: 1px solid #d4af37;
  text-transform: uppercase;
  font-size: 55%;
  padding: 10px 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 10px;
}

.btn-fill {
  background-color: #d4af37;
  color: #fff;
}

.btn-fill:hover,
.btn-fill:active {
  background-color: #c9a633;
  border: 1px solid #c9a633;
}

.btn-ghost {
  color: #d4af37;
  background-color: #fff;
}

.btn-ghost:hover,
.btn-ghost:active {
  background-color: #d4af37;
  color: #fff;
}

.btn-large {
  font-size: 65%;
  padding: 9px 22px;
}

/* ----------------------------------------------- */
/* ---------------- OTHER FACILITIES ------------- */
/* ----------------------------------------------- */

p.imggrid {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 7px;
  line-height: 1.5;
  color: #241e09;
  max-width: 400px;
}

.containera {
  max-width: 100rem;
  margin: 0 auto;
  /* padding: 0 2rem 2rem; */
  padding-bottom: 20px;
}

.up h1 {
  text-align: center;
  font-size: 20px;
  padding-bottom: 30px;
  position: relative;
}
.up h1::after {
  display: block;
  height: 1px;
  background-color: #d4af37;
  content: "";
  width: 90px;
  margin: 5px auto 10px;
}
.up p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  /* margin: 0 auto; */
  justify-content: center;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-item {
  background: #fffdf8;
  border: 1px solid #e4d8c8;
  border-radius: 10px;
  padding: 14px;
}

.facilities-cta {
  max-width: 860px;
  margin: 50px auto 20px;
  padding: 34px;
  text-align: center;
  background: #f7f1e8;
  border: 1px solid #e4d8c8;
  border-radius: 18px;
}

.facilities-cta h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

.facilities-cta p {
  max-width: 650px;
  margin: 0 auto 22px;
  color: #3b331a;
  line-height: 1.55;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-buttons .btn {
  margin-right: 0;
}

/* ----------------------------------------------- */
/* --------------- SUPPORTS ---------------------- */
/* ----------------------------------------------- */

@supports (display: grid) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
  }

  .gallery,
  .gallery-item {
    margin: 0;
  }
}

/* ----------------------------------------------- */
/* --------------- QUERIES ----------------------- */
/* ----------------------------------------------- */

@media only screen and (max-width: 600px) {
  h3.right-title {
    font-size: 20px;
  }

  p.imggrid,
  p.right-title-content,
  p.list-text {
    font-size: 15px;
    width: 18em;
  }

  p.right-title-content {
    width: 19em;
  }

  .container {
    margin: auto;
    justify-content: center;
  }

  .facilities-cta {
    padding: 24px 18px;
  }

  .facilities-cta h3 {
    font-size: 22px;
  }
}

@media (min-width: 700px) {
  .image-col {
    margin-right: 5%;
  }
}

@media (min-width: 1200px) {
  * {
    font-size: 20px;
  }
}

@media (min-width: 1050px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}

.large-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.upper-section .image-col {
  flex: 0 1 450px;
  max-width: 450px;
}

.upper-section .large-image-container {
  width: 100%;
}

/* Ladislaus Garden Suites facilities SEO refresh */
h1,
h2,
h3 {
  color: #241e09;
}

.page-kicker {
  margin: 0 0 10px;
  color: #6f7d4f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.page-header {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.page-sub-header {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

.large-image {
  border-radius: 10px;
}

.equipment-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 70px;
}

.summary-card,
.faq-card {
  border: 1px solid #e4d8c8;
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 12px 32px rgba(45, 41, 37, 0.08);
}

.summary-card {
  padding: 28px;
}

.summary-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.18;
}

.summary-card p:last-child {
  margin: 0;
  color: #3b331a;
  font-size: 0.94rem;
  line-height: 1.65;
}

.gallery-item h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.facilities-faq {
  max-width: 1050px;
  margin: 56px auto 0;
}

.facilities-faq > h2 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  padding: 24px;
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.faq-card p {
  margin: 0;
  color: #3b331a;
  font-size: 0.94rem;
  line-height: 1.6;
}

.facilities-cta h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .equipment-summary,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .summary-card,
  .faq-card {
    padding: 22px;
  }

  .facilities-cta h2 {
    font-size: 22px;
  }
}

/* Keep the shared header consistent on the facilities page. */
header .header-nav-link {
  font-size: 20px !important;
  font-weight: 700 !important;
}

header .header-btn-custom {
  font-size: 20px !important;
  font-weight: 700 !important;
}

header .language-button {
  font-size: 14px !important;
}
