:root {
  /* Colors */
  --peach-bg: #fff5f0;
  --peach-accent: #ffe5d9;
  --yoga-green: #2d5a27;
  --yoga-green-light: #4a7c44;
  --divider-color: rgba(45, 90, 39, 0.2);
  --white: #ffffff;
  
  /* Typography */
  --font-serif: "Cinzel Decorative", "Playfair Display", serif;
  --font-body: "Inter", -apple-system, sans-serif;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--peach-bg);
  color: var(--yoga-green);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

/* Header & Illustration */
.hero-illustration {
  margin-bottom: var(--space-md);
  position: relative;
}

.meditating-woman {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: #d8b4fe; /* Light purple for the mat/aura */
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-avatar.meditation {
  width: 150px;
  height: 150px;
  background-color: #fff;
  border-radius: 50%;
}

.lotus-icon {
  width: 80px;
  height: 40px;
  margin: -20px auto 0;
  opacity: 0.6;
}

/* Titles */
.main-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-top: var(--space-sm);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

/* Sections */
section {
  margin-bottom: 30px;
}

.section-divider {
  width: 60%;
  height: 1px;
  background: var(--divider-color);
  margin: var(--space-lg) auto;
}

.banner-highlight {
  background-color: var(--peach-accent);
  padding: var(--space-md);
  border-radius: 8px;
  margin: var(--space-lg) 0;
}

.heading-bold {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

/* Schedule Grid */
.schedule-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.schedule-item {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-weight: 500;
}

.schedule-time {
  font-weight: 700;
}

/* List Items */
.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px; /* 15-20px as per guide */
}

.highlight-list li {
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--yoga-green-light);
}

/* Trainer Section */
.trainer-card {
  margin-top: var(--space-xl);
}

.trainer-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.social-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: var(--yoga-green);
  font-weight: 500;
  transition: opacity 0.2s;
}

.social-item:hover {
  opacity: 0.7;
}

.social-icon {
  width: 24px;
  height: 24px;
}

/* Footer */
footer {
  margin-top: var(--space-xxl);
  padding-bottom: var(--space-xl);
}

.tagline {
  font-style: italic;
  letter-spacing: 3px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Helper Classes */
.placeholder-image {
  background: rgba(45, 90, 39, 0.05);
  border: 1px dashed var(--yoga-green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.placeholder-image::after {
  content: attr(data-label);
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .schedule-item {
    flex-direction: column;
    gap: 4px;
  }
}
