/* ══════════════════════════════════════════
   spot.css  –  Modern Bento Box Layout
══════════════════════════════════════════ */

.spot-page .footer {
  margin-top: 0;
}

.spot-main {
  padding-top: clamp(100px, 12vw, 120px);
  padding-bottom: 120px;
  min-height: 100vh;
}

/* ── 1. Top Navigation & Header ── */
.spot-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.spot-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  transition: color 0.2s, gap 0.2s;
}

.spot-back:hover {
  color: var(--forest);
  gap: 12px;
}

.spot-breadcrumb {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.spot-header-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px auto;
}

.spot-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  color: var(--forest);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.spot-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  margin: 0;
}

/* ── 2. The Bento Grid ── */
.spot-bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: clamp(400px, 60vh, 550px);
  margin-bottom: 64px;
}

.bento-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(28, 26, 22, 0.04);
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.bento-hero {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border: none;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-weather {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 24px;
}

.bento-map {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  padding: 24px;
}

.spot-topbar,
.spot-header-block,
.bento-hero,
.bento-weather,
.bento-map {
  opacity: 0;
  transform: translateY(20px);
  animation: spot-fade-up 0.55s ease forwards;
}

.spot-topbar {
  animation-delay: 0.05s;
}

.spot-header-block {
  animation-delay: 0.15s;
}

.bento-hero {
  animation-delay: 0.25s;
}

.bento-weather {
  animation-delay: 0.35s;
}

.bento-map {
  animation-delay: 0.45s;
}

.spot-story,
.spot-sidebar-alerts {
  opacity: 0;
  transform: translateY(20px);
  animation: spot-fade-up 0.55s ease forwards;
  animation-delay: 0.55s;
}

@keyframes spot-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bento-header {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.weather-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 24px;
}

.w-date {
  display: block;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.w-stats {
  display: flex;
  gap: 16px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 600;
}

.weather-note {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  flex: 1;
}

.spot-map-container {
  width: 100%;
  flex: 1;
  border-radius: var(--radius-sm);
  background: #e2e1dc;
  z-index: 10;
}

.spot-lower-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.lower-heading {
  font-family: var(--display);
  font-size: 32px;
  color: var(--forest);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

.drop-cap::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 72px;
  line-height: 56px;
  padding-top: 6px;
  padding-right: 12px;
  color: var(--forest);
  font-weight: 600;
}

.spot-story .body-text {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--ink-mid);
  max-width: 100%;
}

.spot-tags-section {
  margin-top: 48px;
}

.spot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.spot-tag-pill {
  display: inline-flex;
  align-items: center;
  background: var(--cream-dark);
  color: var(--forest);
  border: 1px solid var(--border);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Notice Widget */
.notice-card {
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}

.notice-card:last-child {
  margin-bottom: 0;
}


.notice-card--info {
  background: var(--white);
  border: 2px solid var(--border);
}

.notice-card--info .notice-header {
  color: var(--forest);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.quick-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 500;
}

.quick-info-list li i {
  width: 16px;
  text-align: center;
  color: var(--forest);
  flex-shrink: 0;
}

.quick-info-list li a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
}

.quick-info-list li a:hover {
  color: var(--gold);
}

/* Alert — red warning */
.notice-card--alert {
  background: #fff5f5;
  border: 1px solid #fca5a5;
}

.notice-card--alert .notice-header {
  color: #ef4444;
}

.notice-card--alert .notice-text {
  color: #991b1b;
}

.notice-card--overlay {
  background: #f0f4ff;
  border: 1px solid #c7d2fe;
}

.notice-card--overlay .notice-header {
  color: #4338ca;
}

.notice-card--overlay .notice-text {
  color: #3730a3;
}

.notice-card--clear {
  background: #f0fdf4;
  border: 1px solid #86efac;
}

.notice-card--clear .notice-header {
  color: #16a34a;
}

.notice-card--clear .notice-text {
  color: #166534;
}

.notice-header {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-text {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive Tablet/Mobile ── */
@media (max-width: 1024px) {
  .spot-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
  }

  .bento-hero {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    height: 400px;
  }

  .bento-weather,
  .bento-map {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-map {
    height: 300px;
  }

  .spot-lower-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}