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

:root {
  --bg-color: #FAF7F2;
  --primary-color: #C17F5A;
  --primary-hover: #a86c4a;
  --secondary-color: #7B9E87;
  --text-color: #2C2C2C;
  --text-light: #5A5A5A;
  --surface-color: #F0EBE3;
  --surface-white: #FFFFFF;
  --border-color: #E2D9CC;
}

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

html {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex-grow: 1;
}

section {
  padding: 5rem 0;
}

/* Header */
.site-header {
  padding: 1.5rem 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.header-cta {
  background-color: var(--primary-color);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.header-cta:hover {
  background-color: var(--primary-hover);
  color: white;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn:active {
  transform: translateY(2px);
}

/* Hero Section */
.hero {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, var(--surface-color) 0%, var(--bg-color) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Featured Section */
.features {
  background-color: var(--surface-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.section-header h2 {
  font-size: 2.25rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Details/Curriculum */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.details-image {
  border-radius: 8px;
  overflow: hidden;
}

.details-list {
  list-style: none;
}

.details-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.details-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.details-list h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.details-list p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Target Audience */
.audience {
  background-color: var(--surface-color);
}

.audience-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.audience-box {
  background-color: var(--surface-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.audience-box h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
}

/* Objection Section */
.objection {
  text-align: center;
  padding: 6rem 0;
  background-color: var(--secondary-color);
  color: white;
}

.objection h2, .objection h3, .objection h4 {
  color: white;
}

.objection p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-inline: auto;
  font-size: 1.2rem;
}

/* Form Section */
.enroll {
  background-color: var(--surface-white);
}

.enroll-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.enroll-container h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.enroll-container > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
}

.lead-form input {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.lead-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.lead-form button {
  margin-top: 1rem;
  width: 100%;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--bg-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

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

.footer-brand .logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--surface-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--surface-color);
  padding-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Success Page */
.success-page main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message {
  text-align: center;
  background-color: var(--surface-white);
  padding: 4rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.success-message h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--surface-white);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.cookie-btn:hover {
  background-color: var(--primary-hover);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .details-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .audience-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
  }
  
  .cookie-text {
    max-width: 70%;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero {
    padding: 6rem 0 8rem;
  }
}
