

/* =========================
   RESET + TOKENS (TEMPLATE)
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* Keep tokens generic (no brand colors / page-specific meaning) */
:root {
  --text: #101010;
  --bg: #ffffff;
/*
  --border: rgba(0, 0, 0, 0.10);
  --border-strong: rgba(0, 0, 0, 0.18);
*/
  --radius: 12px;
  --panel-pad: 1rem 1.5rem;

  --max: 1500px;
  --gap: 1rem;

  /* breakpoints */
  --bp: 650px;
}



/* =========================
   PAGE LAYOUT (GRID)
========================= */
body {
 font-family: "SF Pro Text", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);

  padding: 2rem 3rem;
  margin-inline: auto;
  max-inline-size: var(--max);

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
  grid-template-areas:
    "header  header  header  header"
    "sidebar box-0   box-0   box-0"
    "sidebar box-1   box-1   box-1"
    "sidebar box-2   box-2   box-2"
    "sidebar box-3   box-3   box-3"
    "sidebar box-4   box-4   box-4"
    "sidebar box-5   box-5   box-5"
    "sidebar box-6   box-6   box-6"
    "sidebar box-7   box-7   box-7"
    "footer  footer  footer  footer";
  gap: var(--gap);
  min-height: 100vh;
}


/* =========================
   GRID AREAS
========================= */
.home-page { grid-area: header; }
.sidebar   { grid-area: sidebar; }

.main-content-box-0 { grid-area: box-0; }
.main-content-box-1 { grid-area: box-1; }
.main-content-box-2 { grid-area: box-2; }
.main-content-box-3 { grid-area: box-3; }
.main-content-box-4 { grid-area: box-4; }
.main-content-box-5 { grid-area: box-5; }
.main-content-box-6 { grid-area: box-6; }
.main-content-box-7 { grid-area: box-7; }

.footer { grid-area: footer; }


/* =========================
   PANELS (GENERIC)
========================= */
.home-page,
.footer,
.main-content-box-0 {
   margin-top: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}
.main-content-box-1 {
   margin-top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}

.main-content-box-2 {
   margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}

.main-content-box-3 {
   margin-top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}

.main-content-box-4 {
   margin-top: 100px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}

.main-content-box-5 {
  margin-top: 110px;
    border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}

.main-content-box-6 {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
 
}
/* Smaller text only inside box-7 */
.main-content-box-7 .panel-text {


  font-size: 0.75rem;
  line-height: 1.4;
    border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
}

.main-content-box-7 .panel-title {
  font-size: 0.85rem;
    border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
}

.main-content-box-7 .page-description-8 {
    margin-top: 80px;
  font-size: 1rem;
    border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--panel-pad);
  background: transparent; 
}
/* =========================
   HEADER / TOP NAV (GENERIC)
========================= */
.home-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  display: block;
  height: 36px;   /* template-friendly */
  width: auto;
}



/* Shared button style (nav + sidebar toggles) */
.site-nav-toggle,
.sidebar-toggle {
  font-size: 1rem;
  line-height: 1;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
}

.site-nav-toggle:hover,
.sidebar-toggle:hover {
  border-color: var(--border-strong);
}

/* nav links */
.site-nav {
  display: none;
  justify-content: flex-end;
  gap: 1.25rem;
}
.site-nav.is-open { display: flex; }

.site-nav a {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}
.site-nav a:hover { text-decoration: underline; }

@media (min-width: 650px) {
  .site-nav-toggle { display: none; }
  .site-nav { display: flex; }
  .sidebar-toggle { display: none; }
}



/* =========================
   SIDEBAR (GENERIC)
========================= */
.sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
  height: fit-content;
  border-radius: var(--radius);
  padding: 1rem;
}

.house-y_room-y {
  display: grid;
  gap: 0.6rem;
}


.sidebar-nav {
  width: 100%;
  text-align: left;

  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;

  padding: 0.6rem 0.85rem;
  border-radius: 10px;

  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.6);
  color: inherit;

  cursor: pointer;
  transition: transform 120ms ease, box-shadow 160ms ease;
}


.sidebar-nav:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.sidebar-nav:active { transform: translateY(0); }

/* MOBILE: sidebar hidden by default */
@media (max-width: 649px) {
  .sidebar { display: none; }
  .sidebar.is-open { display: block; }
  .sidebar { position: relative; top: auto; }
}


/* =========================
   BOX LAYOUTS (GENERIC FLEX)
========================= */
.main-content-box-0,
.main-content-box-1,
.main-content-box-2,
.main-content-box-3,
.main-content-box-4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: flex-start;
}


/* titles full width (keeps your class names) */
.page-description,
.page-description-2,
.page-description-3,
.page-description-4,
.page-description-5,
.page-description-6,
.page-description-7,
.page-description-8 {
  flex: 0 0 100%;
  text-align: center;
  font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
  margin: 0.25rem auto 0.75rem;
}



/* Two-column base rule (keeps your “house-x” structure) */
.main-content-box-0 > .house-1,
.main-content-box-0 > .house-2,
.main-content-box-1 > .house-3,
.main-content-box-1 > .house-4,
.main-content-box-2 > .house-5,
.main-content-box-2 > .house-6,
.main-content-box-3 > .house-7,
.main-content-box-3 > .house-8,
.main-content-box-4 > .house-9,
.main-content-box-4 > .house-10 {
  flex: 1 1 420px;
  min-width: 320px;
}

/* Optional: full-width left panels if you want that layout */
.main-content-box-0 > .house-1 { flex: 0 0 100%; }
.main-content-box-1 > .house-3 { flex: 0 0 100%; }



/* =========================
   ROOM WRAPPERS (GENERIC)
========================= */
.house-1_room-1,
.house-2_room-2,
.house-3_room-3,
.house-4_room-4,
.house-5_room-5,
.house-6_room-6,
.house-7_room-7,
.house-8_room-8,
.house-9_room-9,
.house-10_room-10 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
 
}


/* =========================
   CARDS (GENERIC)
========================= */
.panel-card,
.wide-panel {
  width: 80%;
  border: 1px solid var(--border); 
  border-radius: var(--radius);
  padding: 1rem;

}

.panel-title {
  font-family: system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.panel-text {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

/* Generic list (replaces ts-bullet system) */
.panel-list {
  margin-top: 0.75rem;
  padding-left: 1.15rem;
}
.panel-list li {
  margin-top: 0.35rem;
}

/* =========================
   IMAGES
========================= */
.image-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: nowrap;   /* keeps all 3 in one row */
  width: 100%;
  margin-bottom: 1rem;
}


/*
.image-row .room-3-image {
  display: block;
  width: calc((100% - 2rem) / 3); 
  max-width: none;
  height: auto;
  border-radius: 12px;
} 
*/

.room-1-image {
    display: block;
 width: 100%;
  max-width: none;
  height: auto;
  border-radius: 12px;
}

.room-2-image {
    display: block;
 width: 88%;
  max-width: none;
  height: auto;
  border-radius: 12px;
  
}
.room-3-image {
 margin-left: -20px;
  display: block;
 width: 105%;
  max-width: none;
  height: auto;
  border-radius: 12px;


}

.room-4-image {
 margin-left: -20px;
  display: block;
 width: 105%;
  max-width: none;
  height: auto;
  border-radius: 12px;


}
.room-5-image {
 
  display: block;
 width: 135%;
  max-width: none;
  height: auto;
  border-radius: 12px;


}

.room-6-image {
margin-top: 10px;
  display: block;
 width: 135%;
  max-width: none;
  height: auto;
  border-radius: 12px;


}

.room-7-image {
margin-top: 10px;
  display: block;
 width: 105%;
  max-width: none;
  height: auto;
  border-radius: 12px;


}

.room-8-image {
margin-top: 10px;
  display: block;
 width: 135%;
  max-width: none;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;


}


.room-8a-image {
  margin-left: -30px;
  margin-top: 20px;
margin-top: 10px;
  display: block;
 width: 135%;
  max-width: none;
  height: 200%;
  border-radius: 12px;

}

.room-9-image {

  margin-top: 2px;
margin-top: 10px;
  display: block;
 width: 75%;
  max-width: none;
  height: auto;
  border-radius: 12px;

}






/* all other single images */



.room-10-image {
  display: block;
  width: 50%;
  height: auto;
  margin-inline: auto;
  border-radius: 12px;
}

/* mobile: stack images */
@media (max-width: 649px) {
  .image-row {
    flex-wrap: wrap;
  }

  .image-row .room-1-image,
  .image-row .room-2-image,
  .image-row .room-3-image {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================
   FOOTER (GENERIC)
========================= */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright {
  font-weight: 500;
  font-size: 14px;
  padding: 5px;
}


/* =========================
   MOBILE GRID
========================= */
@media (max-width: 649px) {
  body {
    padding: 1rem;

    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "header  header  header  header"
      "sidebar sidebar sidebar sidebar"
      "box-0   box-0   box-0   box-0"
      "box-1   box-1   box-1   box-1"
      "box-2   box-2   box-2   box-2"
      "box-3   box-3   box-3   box-3"
      "box-4   box-4   box-4   box-4"
      "box-5   box-5   box-5   box-5"
      "box-6   box-6   box-6   box-6"
      "box-7   box-7   box-7   box-7"
      "footer  footer  footer  footer";
  }
}


  /* bigger image area on small screens */
  .house-1_room-1,
  .house-3_room-3,
  .house-5_room-5,
  .house-8_room-8,
  .house-9_room-9 {
    padding: 0.75rem 0.5rem;
  }

  .room-8-image {
    width: min(100%, 560px);
  }


/* =========================
   DESKTOP GRID (your original sidebar-left layout)
========================= */
@media (min-width: 650px) {
  body {
    padding: 2rem 3rem;
    grid-template-columns: 1fr 5fr 5fr 5fr;
  }

  .sidebar { position: sticky; top: 2rem; }
}








