@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-deep-space: #0f172a;
  --surface-layer: #1e293b;
  --highlight-mint: #10b981;
  --text-cloud: #f8fafc;
  
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;
  
  --gradient-vitality: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  --gradient-accent: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep-space);
  color: var(--text-cloud);
  font-family: var(--font-text);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.layout-bounds {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vital-nav-wrapper {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.action-trigger-btn {
  background-color: var(--highlight-mint);
  color: var(--bg-deep-space);
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-trigger-btn:hover {
  background-color: var(--text-cloud);
  transform: translateY(-2px);
}

.info-module-panel {
  background-color: var(--surface-layer);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
}

/* Custom Numbered List for Reserve Page */
.step-enumerator {
  list-style: none;
  padding-left: 0;
}

.step-enumerator li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

.step-enumerator li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  background-color: var(--highlight-mint);
  color: var(--bg-deep-space);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.step-enumerator {
  counter-reset: item;
}

/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--surface-layer);
  border-top: 1px solid var(--highlight-mint);
  padding: 1.5rem 1rem;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 3rem;
  }
}

.cookie-text {
  font-family: var(--font-text);
  color: var(--text-cloud);
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

#accept-cookie {
  background-color: var(--highlight-mint);
  color: var(--bg-deep-space);
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

#decline-cookie {
  background-color: #4B5563;
  color: var(--text-cloud);
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.faq-answer {
  display: none;
  padding-top: 1rem;
  color: #cbd5e1;
}

.faq-toggle:checked ~ .faq-answer {
  display: block;
}