/* ============================================================
   GERMANIACS — Europe 2025
   Main stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0d1117;
  --bg2:         #161b22;
  --bg3:         #1e2430;
  --gold:        #e8a020;
  --gold-light:  #f5c052;
  --gold-dim:    rgba(232,160,32,0.15);
  --text:        #e6edf3;
  --text-muted:  #8b949e;
  --border:      #2d333b;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --nav-h:       64px;

  /* City accent colours */
  --munich:      #3b82f6;   /* blue */
  --prague:      #ef4444;   /* red */
  --london:      #8b5cf6;   /* purple */
  --amsterdam:   #f97316;   /* orange */
  --brussels:    #f59e0b;   /* amber */
  --salzburg:    #10b981;   /* emerald */
  --vb:          #64748b;   /* slate */
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1rem;
}

.section-title .accent { color: var(--gold); }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.nav__logo span { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
  background: var(--bg3);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  opacity: 0.6;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 180px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { background: var(--bg3); color: var(--text); }

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu { display: block; }

/* Logout button */
.nav__logout {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.nav__logout:hover {
  border-color: #ef4444;
  color: #ef4444;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 999;
}

.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1rem;
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--gold); }

.nav__mobile-section {
  padding: 8px 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Page offset for fixed nav */
.page-top { padding-top: var(--nav-h); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 16px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.city-hero .breadcrumb { position: relative; z-index: 2; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--text); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #1a2540 0%, var(--bg) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232,160,32,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59,130,246,0.08) 0%, transparent 50%);
}

.hero__content { position: relative; z-index: 1; }

.hero__flag {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.hero__title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 16px;
}

.hero__title .gold { color: var(--gold); }

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero__meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__meta-item {
  text-align: center;
}

.hero__meta-item .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero__meta-item .value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.hero__cta:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- City Banner (sub-page hero) ---- */
.city-hero {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  position: relative;
  overflow: hidden;
}

.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: radial-gradient(circle at 80% 50%, var(--city-color, var(--gold)) 0%, transparent 60%);
}

.city-hero__inner { position: relative; z-index: 1; }

.city-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--city-color, var(--gold));
  margin-bottom: 12px;
}

.city-hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.city-hero__dates {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.city-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tag--accent {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Route strip ---- */
.route-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow-x: auto;
}

.route-strip__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.route-city {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.route-city__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.route-city__dates {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.route-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.route-city a { color: var(--text); }
.route-city a:hover { color: var(--gold); }

/* ---- Cards grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card__banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.card__body { padding: 20px; }

.card__overline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card__link::after { content: ' →'; }

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gold-dim);
  color: var(--gold);
}

/* ---- Crew cards ---- */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.crew-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.crew-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.crew-card__avatar {
  width: 100%;
  height: 260px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.crew-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
}

.crew-card__body { padding: 20px; }

.crew-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.crew-card__role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.crew-card__bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item--day-trip::before { background: var(--bg3); }

.timeline-item__date {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-item__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline-item__detail {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.timeline-item__transport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  margin-top: 8px;
}

/* ---- Tabs ---- */
.tabs {
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.tab-btn:hover { color: var(--text); }

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- Attraction list ---- */
.attr-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.attr-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.2s;
}

.attr-item:hover { border-color: var(--gold); }

.attr-icon {
  width: 48px;
  height: 48px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.attr-content__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.attr-content__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.attr-content__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* ---- Info box ---- */
.info-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.info-box--tip { border-left-color: #10b981; }
.info-box--warn { border-left-color: #f59e0b; }
.info-box--alert { border-left-color: #ef4444; }

.info-box__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-box--tip .info-box__title { color: #10b981; }
.info-box--warn .info-box__title { color: #f59e0b; }
.info-box--alert .info-box__title { color: #ef4444; }

.info-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--text); }

/* ---- Transport table ---- */
.transport-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.transport-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--bg2);
  border-bottom: 2px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.transport-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.transport-table tr:last-child td { border-bottom: none; }
.transport-table tr:hover td { background: var(--bg2); }
.transport-table td strong { color: var(--text); }

.transport-table td:first-child { color: var(--text); font-weight: 600; }

.mode-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mode-badge--drive { background: rgba(59,130,246,0.15); color: #60a5fa; }
.mode-badge--fly   { background: rgba(139,92,246,0.15); color: #a78bfa; }
.mode-badge--train { background: rgba(16,185,129,0.15); color: #34d399; }
.mode-badge--bus   { background: rgba(245,158,11,0.15); color: #fbbf24; }

/* ---- Quick facts sidebar grid ---- */
.city-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.city-layout > * { min-width: 0; }

.facts-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.facts-card__header {
  background: var(--bg3);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.facts-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.facts-list {
  list-style: none;
  padding: 16px 0;
}

.facts-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  gap: 12px;
}

.facts-list li:last-child { border-bottom: none; }

.facts-list .key { color: var(--text-muted); flex-shrink: 0; }
.facts-list .val { color: var(--text); text-align: right; font-weight: 500; }

/* ---- Day trip page ---- */
.daytrip-hero {
  padding: calc(var(--nav-h) + 48px) 0 48px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--border);
}

.daytrip-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- Stats row ---- */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.stat-card {
  flex: 1;
  min-width: 140px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-card__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__brand span { color: var(--text); }

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 8px; }

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- Utility ---- */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: #000;
  border: none;
}

.btn--primary:hover { background: var(--gold-light); color: #000; }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ---- Two-column grid (collapses on mobile) ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .city-layout {
    grid-template-columns: 1fr;
  }

  .facts-card {
    position: static;
    order: -1;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .daytrip-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__logout { display: none; }
  .nav__burger { display: flex; }

  .okto-callout {
    grid-template-columns: 1fr !important;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__meta {
    gap: 20px;
  }

  .section { padding: 48px 0; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
