@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&family=Playfair+Display:wght@600;700;900&display=swap');

:root {
  /* Thematic Configuration Variables */
  --diab-bg: #FFFFFF;
  --diab-surface: #FAFAFA;
  --wellness-tone: #E53E3E; /* High contrast red for WCAG AA */
  --wellness-tone-hover: #C53030;
  --sugar-ink: #1A202C;
  --sugar-ink-soft: #4A5568;
  --balance-edge: #E2E8F0;
  --balance-shadow: 0 10px 25px -5px rgba(229, 62, 62, 0.25);
  --vitality-gradient: linear-gradient(135deg, #E53E3E 0%, #319795 100%);
  --vitality-highlight: #319795; /* Teal for high contrast */
  
  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Mulish', sans-serif;
}

/* Reset and Base */
body {
  font-family: var(--font-body);
  background-color: var(--diab-bg);
  color: var(--sugar-ink);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--sugar-ink);
}

/* Thematic Structural Classes (Replacing forbidden generic classes) */
.diab-layout-bound {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-segment {
  padding: 5rem 0;
}

.action-trigger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wellness-tone);
  color: #FFFFFF;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.action-trigger-link:hover {
  background: var(--wellness-tone-hover);
  transform: translateY(-3px);
  box-shadow: var(--balance-shadow);
  color: #FFFFFF;
}

.action-trigger-ghost {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.action-trigger-ghost:hover {
  background: #FFFFFF;
  color: var(--wellness-tone);
}

/* Header & Mobile Menu (Preset C - Bold Accent) */
.colorful-header-strip {
  background: var(--wellness-tone);
  color: #FFFFFF;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.colorful-header-strip a, 
.colorful-header-strip h1 {
  color: #FFFFFF;
}

.mobile-nav-pane {
  display: none;
  flex-direction: column;
  background: var(--wellness-tone);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

#nav-toggle:checked ~ .mobile-nav-pane {
  display: flex;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* Specific Block Styles for Layouts */
.sugar-intro-wrap {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.sugar-intro-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sugar-intro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sugar-intro-overlay {
  position: absolute;
  inset: 0;
  background: var(--vitality-gradient);
  opacity: 0.85;
  z-index: 2;
}

.sugar-intro-content {
  position: relative;
  z-index: 3;
}

/* Features - Horizontal Rows */
.wellness-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--balance-edge);
  padding-bottom: 2rem;
}

.benefit-item-row:last-child {
  border-bottom: none;
}

.benefit-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--vitality-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  margin-right: 2rem;
}

/* How It Works - Vertical Line */
.steps-vertical-pile {
  border-left: 4px solid var(--vitality-highlight);
  padding-left: 2.5rem;
  margin-left: 1.5rem;
}

.step-node-item {
  position: relative;
  margin-bottom: 3.5rem;
}

.step-node-item:last-child {
  margin-bottom: 0;
}

.step-node-item::before {
  content: '';
  position: absolute;
  left: -3.2rem;
  top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--wellness-tone);
  border-radius: 50%;
  border: 4px solid var(--diab-bg);
  box-shadow: 0 0 0 2px var(--vitality-highlight);
}

/* FAQ Styling */
.faq-reveal-item {
  border: 1px solid var(--balance-edge);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--diab-surface);
}

.faq-reveal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--wellness-tone);
}

/* Form Styles */
.reserve-input-field {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--balance-edge);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
  outline: none;
  transition: border-color 0.3s;
}

.reserve-input-field:focus {
  border-color: var(--wellness-tone);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Cookie Banner */
.cookie-notice-pane {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--sugar-ink);
  color: #FFFFFF;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.cookie-action {
  background: var(--wellness-tone);
  color: #FFFFFF;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-action:hover {
  background: var(--wellness-tone-hover);
}

.cookie-decline {
  background: transparent;
  border: 1px solid #FFFFFF;
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .cookie-notice-pane {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}