/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --indigo: #2D1B69;
  --vermilion: #E60012;
  --gold: #FFD700;
  --dark-indigo: #1A0F3F;
  --light-gold: #FFF5B7;
  --cream: #FEFBF3;
  --charcoal: #2C2C2C;
  --soft-gray: #F8F8F8;
  --border-light: #E5E5E5;
  
  --font-display: 'Crimson Text', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(45, 27, 105, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 27, 105, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 27, 105, 0.16);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Centered Sections */
.centered-section {
  text-align: center;
}

.centered-section .container > * {
  text-align: center;
}

.centered-section .education-content,
.centered-section .platform-features {
  text-align: left;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

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

a:hover {
  color: var(--vermilion);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  margin: 8px;
}

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

.btn-primary:hover {
  background-color: var(--dark-indigo);
  border-color: var(--dark-indigo);
  color: white;
}

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

.btn-secondary:hover {
  background-color: var(--indigo);
  color: white;
}

/* Icons and Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--indigo);
}

.icon-large {
  width: 80px;
  height: 80px;
}

.icon-medium {
  width: 48px;
  height: 48px;
}

.feature-icon,
.contact-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--dark-indigo) 100%);
  color: white;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></svg>') repeat;
  background-size: 40px 40px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  color: white;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 24px;
}

.region-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.education-image,
.platform-image,
.contact-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  color: var(--indigo);
  margin-bottom: 64px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--vermilion) 100%);
  border-radius: 2px;
}

/* Features Grid */
.features {
  background-color: var(--soft-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--vermilion) 0%, var(--gold) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}

/* Products Grid */
.experiences {
  background-color: var(--soft-gray);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-content {
  padding: 24px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--vermilion);
  margin: 16px 0;
}

/* Regions Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.region-card {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.region-card:hover {
  box-shadow: var(--shadow-md);
}

/* SVG Container Styling */
.svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-gray) 0%, var(--border-light) 100%);
  border-radius: 12px;
  padding: 16px;
}

.svg-container svg {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Calendar */
.calendar {
  background-color: var(--soft-gray);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.season-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.season-card h3 {
  color: var(--indigo);
  margin-bottom: 20px;
}

.season-card ul {
  list-style: none;
}

.season-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 20px;
}

.season-card li::before {
  content: '•';
  color: var(--vermilion);
  position: absolute;
  left: 0;
}

.season-card li:last-child {
  border-bottom: none;
}

/* Education Section */
.education-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.education-list {
  list-style: none;
  margin: 24px 0;
}

.education-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
}

.education-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Organizer Platform */
.organizer-platform {
  background-color: var(--soft-gray);
}

.platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.platform-text ul {
  list-style: none;
  margin: 24px 0;
}

.platform-text li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
}

.platform-text li::before {
  content: '→';
  color: var(--vermilion);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item h4 {
  margin-bottom: 8px;
  color: var(--indigo);
}

.contact-item a {
  color: var(--vermilion);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--dark-indigo);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-indigo) 0%, var(--indigo) 100%);
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    height: 250px;
  }
  
  .education-content,
  .platform-features,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .features-grid,
  .products-grid,
  .regions-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  section {
    padding: 48px 0;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 48px 0 64px;
  }
  
  .hero-image {
    height: 200px;
  }
}