* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: #f1f1f1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a url("assets/background.jpg") center center / cover no-repeat fixed;
}

/* Dark overlay so content stays readable on top of the gold/black bg */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: -1;
}

/* ---------- Header ---------- */
.site-header {
  text-align: center;
  padding: 30px 20px 10px;
}

.logo {
  max-width: 280px;
  width: 60%;
  height: auto;
}

.header-photo {
  display: block;
  width: 98%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 18px auto 0;
}

@media (min-width: 768px) {
  .header-photo {
    width: 90%;
    max-width: 860px;
    aspect-ratio: 16 / 6;
    object-fit: cover;
  }
}

.title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  margin-top: 10px;
  letter-spacing: 2px;
  color: #ffffff;
}

/* ---------- Main ---------- */
.main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.intro {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.intro a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

/* ---------- Plan image with hotspots ---------- */
.plan-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  line-height: 0;
}

.plan-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hotspot-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.hotspot:hover,
.hotspot:focus {
  filter: brightness(1.25);
  transform: scale(1.02);
  outline: none;
}

/*
  Hotspot positions in % so they stay aligned on every screen size.
  Adjust these values to match the colored squares on YOUR banesa.png.
*/
.hotspot-red    {
  top: 21%; left: 0.5%; width: 49%; height: 37%;
  background: rgba(192, 57, 43, 0.38);
  border: none;
  clip-path: polygon(
    0%   0%,
    100% 0%,
    100% 65%,
    100%  65%,
    100%  80%,
    95%  80%,
    95%  100%,
    0%   100%
  );
  filter: drop-shadow(0 0 2px rgba(192, 57, 43, 0.95));
}
.hotspot-blue   {
  top: 0%; left: 59%; width: 41%; height: 50%;
  background: rgba(41, 128, 185, 0.38);
  border: none;
  align-items: flex-start;
  padding-top: 8%;
  clip-path: polygon(
    0%   0%,
    100% 0%,
    100% 100%,
    55%  100%,
    55%  84%,
    40%  84%,
    40%  30%,
    0%   30%
  );
  filter: drop-shadow(0 0 2px rgba(41, 128, 185, 0.95));
}
.hotspot-green  {
  top: 49%; left: 0.5%; width: 55%; height: 49%;
  background: rgba(39, 174, 96, 0.38);
  border: none;
  align-items: flex-end;
  padding-bottom: 18%;
  clip-path: polygon(
    0%   18%,
    85%  18%,
    85%  0%,
    100% 0%,
    100% 100%,
    14%  100%,
    14%  87%,
    0%   87%
  );
  filter: drop-shadow(0 0 2px rgba(39, 174, 96, 0.95));
}
.hotspot-yellow {
  top: 50%; left: 56%; width: 44%; height: 50%;
  background: rgba(180, 140, 30, 0.38);
  border: none;
  clip-path: polygon(
    0%   0%,
    100% 0%,
    100% 100%,
    45%  100%,
    45%  96%,
    0%   96%
  );
  filter: drop-shadow(0 0 2px rgba(180, 140, 30, 0.95));
}

/* ---------- Features list ---------- */
.features {
  list-style: none;
  margin: 30px auto 0;
  max-width: 600px;
  text-align: left;
  font-style: italic;
  font-weight: 300;
  opacity: 0.9;
}

.features li {
  padding: 4px 0;
}

.features li::before {
  content: "• ";
  color: #d4a437;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* ---------- Detail pages ---------- */
.detail-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

.detail-page h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 2px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.detail-grid img {
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.detail-info h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #d4a437;
  letter-spacing: 1px;
}

.detail-info ul {
  list-style: none;
  margin-top: 10px;
}

.detail-info li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 300;
}

.detail-info li strong {
  font-weight: 600;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px auto 0;
  padding: 12px 32px;
  background: transparent;
  color: #d4a437;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid #d4a437;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #d4a437;
  color: #111;
  border-radius: 2px;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.back-btn:hover {
  background: #d4a437;
  color: #111;
}

.back-btn:hover .back-arrow {
  background: #111;
  color: #d4a437;
}

.center {
  text-align: center;
}

/* ---------- Color accents per page ---------- */
.accent-red    { border-top: 6px solid #c0392b; }
.accent-blue   { border-top: 6px solid #2980b9; }
.accent-green  { border-top: 6px solid #27ae60; }
.accent-purple { border-top: 6px solid #8e44ad; }
.accent-yellow { border-top: 6px solid #c9a227; }

/* ---------- Tipi A detail ---------- */
.tipi-hero {
  text-align: center;
  padding: 30px 20px 20px;
}

.tipi-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 8px;
}

.tipi-title sup {
  font-size: 0.55em;
  vertical-align: super;
}

.tipi-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #ffffff;
  margin: 4px 0;
  letter-spacing: 1px;
}

.tipi-rooms {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 24px;
}

.tipi-rooms ul {
  list-style: none;
  text-align: left;
}

.tipi-rooms ul li {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 1px;
  padding: 4px 0;
  color: #f1f1f1;
}

.tipi-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px auto 0;
  max-width: 1000px;
  padding: 0 10px;
  width: 100%;
  box-sizing: border-box;
}

.tipi-photos > img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.tipi-photo-middle {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tipi-photo-caption {
  background: rgba(0, 0, 0, 0.55);
  padding: 20px 24px;
  border-radius: 0 0 8px 8px;
}

.tipi-features {
  max-width: 960px;
  margin: 36px auto 0;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #c0392b;
  border-radius: 6px;
  text-align: left;
}

.tipi-features p {
  font-style: normal;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: #e8e8e8;
  margin: 12px 0;
  letter-spacing: 0.3px;
  line-height: 1.8;
}

.tipi-web {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
  font-weight: 300 !important;
  font-style: normal !important;
  letter-spacing: 2px;
  margin-top: 20px !important;
  color: #ffffff !important;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .features {
    font-size: 0.95rem;
  }

  .tipi-photos {
    grid-template-columns: 1fr;
  }

  .tipi-photos > img {
    height: auto;
  }
}
