@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --accent: #DC2345;
  --accent-dark: #b01c38;
  --accent-light: #f04d6a;
  --bg-dark: #12141c;
  --bg-mid: #1e2230;
  --bg-light: #f7f5f2;
  --bg-cream: #ede9e3;
  --text-dark: #1a1a24;
  --text-light: #f5f3f0;
  --text-muted: #5c5f6e;
  --border: rgba(220, 35, 69, 0.25);
  --shadow: 0 12px 40px rgba(18, 20, 28, 0.12);
  --radius: 8px;
  --max-width: 1140px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }

li { margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-mid);
  color: var(--text-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid var(--accent);
  line-height: 1.5;
}

.disclaimer-bar a {
  color: var(--accent-light);
  font-weight: 600;
}

.disclaimer-bar a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 242, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 20, 28, 0.82) 0%, rgba(220, 35, 69, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.hero-inner {
  min-height: 55vh;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--accent);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-light);
}

section {
  padding: 4.5rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

 

.section-mid {
  background: var(--bg-mid);
  color: var(--text-light);
}

.section-mid h2,
.section-mid h3 {
  color: var(--text-light);
}

.section-accent {
  background: var(--accent);
  color: var(--text-light);
}

.section-accent h2,
.section-accent h3 {
  color: var(--text-light);
}

.section-accent .icon-accent {
  color: var(--text-light);
}

.section-accent .card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.section-dark .section-header .eyebrow,
.section-mid .section-header .eyebrow,
.section-accent .section-header .eyebrow {
  color: var(--accent-light);
}

.icon-accent {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-dark .icon-accent,
.section-mid .icon-accent {
  color: var(--accent-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.section-light .card,
.section-cream .card {
  background: #fff;
  box-shadow: var(--shadow);
  border-color: rgba(220, 35, 69, 0.12);
  color: var(--text-dark);
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-box {
  flex: 1;
  min-width: 140px;
  padding: 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(220, 35, 69, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section-dark .stat-box,
.section-mid .stat-box {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--accent-light);
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
}

.section-dark .stat-box strong,
.section-mid .stat-box strong {
  color: var(--accent-light);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split-content ul {
  list-style: none;
  padding: 0;
}

.split-content li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.split-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-light);
}

.section-dark .timeline-item::before {
  border-color: var(--bg-dark);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  background: rgba(255,255,255,0.04);
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.section-dark .faq-list details,
.section-mid .faq-list details {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
}

.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details[open] summary {
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}

.section-dark .faq-list details[open] summary {
  color: var(--accent-light);
}

.faq-list .faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--text-muted);
}

.section-dark .faq-list .faq-answer,
.section-mid .faq-list .faq-answer {
  color: rgba(245, 243, 240, 0.85);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.events-table th {
  background: var(--accent);
  color: var(--text-light);
  font-weight: 600;
}

.events-table tr:nth-child(even) {
  background: rgba(220, 35, 69, 0.05);
}

.section-dark .events-table tr:nth-child(even) {
  background: rgba(255,255,255,0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--text-dark);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-list i {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid a {
  color: rgba(245, 243, 240, 0.85);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 243, 240, 0.7);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
}

.policy-content .events-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.thankyou-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.thankyou-page i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-settings {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cookie-settings.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.cookie-toggle input:disabled {
  opacity: 0.6;
}

.btn-cookie {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

.btn-accept {
  background: var(--accent);
  color: var(--text-light);
}

.btn-reject {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-settings {
  background: rgba(255,255,255,0.12);
  color: var(--text-light);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(220, 35, 69, 0.12);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.section-dark .tag {
  background: rgba(255,255,255,0.1);
  color: var(--accent-light);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  background: rgba(220, 35, 69, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.checklist li i {
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--accent);
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-light);
    border-bottom: 2px solid var(--accent);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition), opacity var(--transition);
  }

  .main-nav.open {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .hero-content .btn { width: 100%; justify-content: center; }
  .cookie-actions { flex-direction: column; }
  .btn-cookie { width: 100%; text-align: center; }
  .stat-row { flex-direction: column; }
  .events-table { font-size: 0.8rem; }
  .events-table th, .events-table td { padding: 0.5rem; }
}

@media (max-width: 320px) {
  html { font-size: 14px; }
  .container { padding: 0 0.75rem; }
  .header-inner { gap: 0.5rem; }
  .logo-link img { height: 32px; }
}
