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

:root {
  --primary: #C4622D;
  --primary-hover: #a85425;
  --secondary: #F5E6D3;
  --accent: #8B9D77;
  --text-dark: #2C1810;
  --background: #FDFAF6;
  --white: #FFFFFF;
  --border: #e6dac8;
  --error: #d32f2f;
}

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

body {
  font-family: 'PT Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin: 15px auto 0;
}

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

.btn:hover {
  background-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
}


.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 700;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}


.hero {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 0;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #5a4238;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}


.audience {
  background-color: var(--secondary);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.audience-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.audience-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}


.results-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.results-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.results-image img {
  width: 100%;
  height: auto;
  display: block;
}

.results-list {
  flex: 1;
  list-style: none;
}

.results-list li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

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


.structure {
  background-color: #f0ebe1;
}

.structure-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
}

.structure-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.structure-image img {
  width: 100%;
  height: auto;
  display: block;
}

.structure-details {
  flex: 1;
}

.structure-item {
  margin-bottom: 25px;
}

.structure-item h3 {
  font-family: 'PT Sans', sans-serif;
  color: var(--primary);
  margin-bottom: 5px;
}


.instructor-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.instructor-image {
  flex: 1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 350px;
}

.instructor-image img {
  width: 100%;
  height: auto;
  display: block;
}

.instructor-bio {
  flex: 1.5;
}


.lead-form-section {
  background-color: var(--secondary);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
}

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

.error-message {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: var(--error);
}

.form-group.has-error .error-message {
  display: block;
}

.submit-btn {
  width: 100%;
}


.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq-answer {
  color: #5a4238;
}


.footer {
  background-color: var(--text-dark);
  color: #d1c8c3;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

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

.footer-col p {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1c8c3;
}

.footer-links a:hover {
  color: var(--white);
}

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


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-banner button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}


.page-header {
  background-color: var(--secondary);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0;
  font-size: 2.5rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-content h2 {
  margin-top: 30px;
}

.page-content p {
  margin-bottom: 15px;
}

.page-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}


.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
}

.success-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 20px;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .results-content,
  .structure-content,
  .instructor-content {
    flex-direction: column;
  }
  
  .results-list li {
    text-align: left;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
