* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #ede8e0;
  --bg-card: #faf8f5;
  --text-dark: #1a1410;
  --text-muted: #7a6f6a;
  --border-color: #d4ccc0;
  --primary: #c85a00;
  --primary-light: #e07a20;
  --accent: #8b7355;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 65vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-intro {
  font-size: 1.125rem;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Bitter', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
  line-height: 1;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 1rem;
  max-width: 50rem;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.5;
}

/* Main Background */
.main-bg {
  background: linear-gradient(180deg, var(--bg-color) 0%, rgba(237, 232, 224, 0.8) 100%);
  padding: 3rem 0;
}

.container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
}

.card-rotate-left {
  transform: rotate(-2deg);
}

.card-rotate-left:hover {
  transform: rotate(0deg);
}

.card-rotate-right {
  transform: rotate(2deg);
}

.card-rotate-right:hover {
  transform: rotate(0deg);
}

.card-intro {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,255,255,0.5) 100%);
}

.card-intro-text {
  font-size: 1.125rem;
  line-height: 1.7;
}

.intro-strong {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.card-heading {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.mb-4 {
  margin-bottom: 1rem;
}

/* Feature Cards Grid */
.section-heading {
  font-family: 'Bitter', serif;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin: 3rem 0 1.5rem;
  color: var(--text-dark);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-heading {
  font-family: 'Bitter', serif;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  transform: rotate(-3deg);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: rotate(1deg) scale(1.05);
  box-shadow: 0 6px 0 rgba(0,0,0,0.2);
}

.btn-primary:active {
  transform: rotate(0deg) scale(0.98);
  box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.btn-emoji {
  font-size: 1.25rem;
}

.btn-arrow {
  opacity: 0.8;
}

/* Facts List */
.facts-list {
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.facts-list li {
  padding: 0.5rem 0;
}

/* Footer */
.footer {
  background-color: var(--bg-card);
  border-top: 2px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-title {
  font-family: 'Bitter', serif;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.footer-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    height: 50vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .card {
    margin-bottom: 1.5rem;
  }

  .btn {
    flex-direction: column;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}
