/* ==========================================================
   OGS Property Guide — Tabbed guide block
   Three panels: This Season / The Area / Before You Go
   ========================================================== */

.ogs-guide {
  background: #1a1a1a;
  padding: 4rem 1.5rem 3rem;
  position: relative;
}

/* ----------------------------------------------------------
   TAB NAVIGATION
   ---------------------------------------------------------- */
.ogs-guide-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.ogs-guide-tab {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  color: rgba(212, 201, 188, 0.4);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  transition: color 0.3s, border-color 0.3s;
}

.ogs-guide-tab:hover {
  color: #d4c9bc;
}

.ogs-guide-tab.active {
  color: #f5f2ee;
  border-bottom-color: rgba(212, 201, 188, 0.5);
}

.ogs-guide-dot {
  color: rgba(212, 201, 188, 0.2);
  font-size: 0.7rem;
  user-select: none;
}

/* ----------------------------------------------------------
   PANELS — fade-in transition
   ---------------------------------------------------------- */
.ogs-guide-panels {
  max-width: 960px;
  margin: 0 auto;
}

.ogs-guide-panel {
  display: none;
}

.ogs-guide-panel.active {
  display: block;
  animation: ogsGuideFadeIn 0.35s ease-out;
}

@keyframes ogsGuideFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   SEASON PANEL
   ---------------------------------------------------------- */
.ogs-guide-season-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.ogs-guide-season-btn {
  background: none;
  border: 1px solid transparent;
  color: rgba(212, 201, 188, 0.35);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.3s, border-color 0.3s;
  font-family: 'DM Sans', sans-serif;
}

.ogs-guide-season-btn:hover {
  color: #d4c9bc;
  border-color: rgba(212, 201, 188, 0.12);
}

.ogs-guide-season-btn.active {
  color: #f5f2ee;
  border-color: rgba(212, 201, 188, 0.18);
}

.ogs-guide-season-btn-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ogs-guide-season-btn-range {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  color: rgba(212, 201, 188, 0.25);
  transition: color 0.3s;
}

.ogs-guide-season-btn.active .ogs-guide-season-btn-range {
  color: rgba(140, 74, 47, 0.7);
}

.ogs-guide-season {
  display: none;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ogs-guide-season.active {
  display: block;
  animation: ogsGuideFadeIn 0.35s ease-out;
}

.ogs-guide-season-label {
  color: #8c4a2f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.ogs-guide-season-heading {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  font-family: 'DM Serif Display', serif;
}

.ogs-guide-season-body {
  color: #d4c9bc;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.ogs-guide-season-note {
  color: #d4c9bc;
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

.ogs-guide-season-note strong {
  color: #ffffff;
}

/* ----------------------------------------------------------
   PANEL HEADERS — shared intro for Area & Prep tabs
   Parallels the season panel's label/heading structure
   ---------------------------------------------------------- */
.ogs-guide-panel-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.ogs-guide-panel-label {
  color: #8c4a2f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.ogs-guide-panel-heading {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  font-family: 'DM Serif Display', serif;
}

/* ----------------------------------------------------------
   AREA PANEL — destination grid
   ---------------------------------------------------------- */
.ogs-guide-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.ogs-guide-dest {
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(212, 201, 188, 0.08);
}

.ogs-guide-dest:nth-last-child(-n+3) {
  border-bottom: none;
}

.ogs-guide-dest-name {
  color: #f5f2ee;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.ogs-guide-dest-time {
  color: #8c4a2f;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  font-family: 'DM Serif Display', serif;
}

.ogs-guide-dest-desc {
  color: rgba(212, 201, 188, 0.7);
  font-size: 0.8rem;
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------
   PREP PANEL — tag/description pairs
   ---------------------------------------------------------- */
.ogs-guide-prep-list {
  max-width: 560px;
  margin: 0 auto;
}

.ogs-guide-prep-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  align-items: baseline;
}

.ogs-guide-prep-tag {
  color: #f5f2ee;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 110px;
  text-align: right;
  flex-shrink: 0;
}

.ogs-guide-prep-desc {
  color: rgba(212, 201, 188, 0.7);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.ogs-guide-prep-sep {
  width: 50px;
  height: 1px;
  background: rgba(212, 201, 188, 0.12);
  border: none;
  margin: 2rem auto;
}

.ogs-guide-prep-cta {
  text-align: center;
}

.ogs-guide-prep-cta a {
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.7rem 2rem;
  display: inline-block;
  transition: background 0.3s, border-color 0.3s;
}

.ogs-guide-prep-cta a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .ogs-guide {
    padding: 3rem 1.25rem 4rem;
  }

  .ogs-guide-nav {
    gap: 1rem;
  }

  .ogs-guide-season-nav {
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ogs-guide-season-btn {
    padding: 0.6rem 0.75rem;
  }

  .ogs-guide-season-btn-name {
    font-size: 0.65rem;
  }

  .ogs-guide-season-heading,
  .ogs-guide-panel-heading {
    font-size: 1.4rem;
  }

  .ogs-guide-dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ogs-guide-dest:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(212, 201, 188, 0.08);
  }

  .ogs-guide-dest:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .ogs-guide-prep-item {
    flex-direction: column;
    gap: 0.4rem;
  }

  .ogs-guide-prep-tag {
    text-align: left;
    min-width: auto;
  }
}

@media (max-width: 600px) {
  .ogs-guide-dest-grid {
    grid-template-columns: 1fr;
  }

  .ogs-guide-dest {
    padding: 1.25rem 1rem;
  }

  .ogs-guide-dest:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(212, 201, 188, 0.08);
  }

  .ogs-guide-dest:last-child {
    border-bottom: none;
  }
}
