:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --primary: #1f4584;
  --primary-soft: #8ea2c9;
  --border: #d7e0f0;
  --text: #1f4584;
  --muted: #4e648f;
  --shadow: 0 18px 45px rgba(31, 69, 132, 0.08);
  --radius: 22px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(142,162,201,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(31,69,132,0.08), transparent 25%),
    var(--bg);
  color: var(--text);
 font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.container {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(247, 248, 251, 0.86);
  border-bottom: 1px solid rgba(31,69,132,0.08);
}

.topbar-inner {
  width: min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  border: 1px solid rgba(31,69,132,0.2);
  background: transparent;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--primary);
  color: white;
}

.hero {
  padding: 56px 0 28px;
}

.hero-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 44px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: var(--primary);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card::before {
  top: 18px;
  left: 18px;
  border-top: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  border-top-left-radius: 8px;
}

.hero-card::after {
  right: 18px;
  bottom: 18px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  border-bottom-right-radius: 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--primary-soft);
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 8px;
  font-weight: 500;
}

.hero-date {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 12px 0 6px;
}

.hero-place {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 auto 18px;
  max-width: 780px;
}

.hero-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.03rem;
  color: var(--muted);
}

.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
}

.btn-secondary:hover {
  background: rgba(31,69,132,0.05);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.section {
  padding: 18px 0;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 16px;
  font-weight: 500;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  height: 100%;
  position: relative;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--primary);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  position: absolute;
  top: -18px;
  right: -18px;

  width: 128px;
  height: 128px;

  object-fit: contain;
  opacity: 0.9;

  pointer-events: none;
}
#venue .card-icon {
  width: 156px;
  height: 156px;
  top: -14px;
  right: -14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 6px;
}

.mini-title {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--primary);
}

.distance-list,
.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.distance-list li,
.notes-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(31,69,132,0.08);
  color: var(--muted);
}

.distance-list li:last-child,
.notes-list li:last-child {
  border-bottom: none;
}

.footer {
  text-align: center;
  margin-top: 40px;

  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  font-style: italic;

  font-size: 1.3rem;
  color: var(--primary);

  opacity: 0.85;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-soft);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card {
    padding: 34px 18px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    text-align: center;
    margin-bottom: 8px;
  }
  .top-actions {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
  }

  .lang-switch {
    justify-content: center;
  }

  .card-icon {
    width: 64px;
    height: 64px;
    top: -14px;
    right: -14px;
  }
  
  #venue .card-icon {
    width: 96px;
    height: 96px;
    top: -14px;
    right: -14px;
  }
  
}

.hero-intro-image-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
}

.hero-intro-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.list a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,69,132,0.25);
  transition: 0.2s ease;
}

.list a:hover {
  border-bottom-color: var(--primary);
}

.recommended::after {
  content: " ✦";
  margin-left: 4px;
  color: var(--primary);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-btn i {
  font-size: 16px;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Toggle button */
.lang-toggle {
  border: 1px solid rgba(31,69,132,0.25);
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(31,69,132,0.25);
  color: var(--primary);
}

.map-btn:hover {
  background: var(--primary);
  color: white;
}

.lang-toggle {
  border: 1px solid rgba(31,69,132,0.25);
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.legend-note {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  opacity: 0.6;
  margin-top: 28px;
}
