/* Pedagogie Page Specific Styles */

body {
  background-color: #fafafa;
  color: #333;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%);
  padding: 4rem 2rem;
  text-align: center;
  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="20" cy="20" r="2" fill="rgba(230,200,48,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(230,200,48,0.1)"/><circle cx="40" cy="70" r="2" fill="rgba(230,200,48,0.1)"/></svg>')
    repeat;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background-color: #e6c830;
  color: #3e2723;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* Introduction Section */
.intro-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.intro-text h2 {
  color: #5d4037;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.intro-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e6c830, #d4a017);
  border-radius: 2px;
}

.intro-text p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.intro-highlight {
  background: linear-gradient(135deg, #fffef5 0%, #fff9e0 100%);
  border: 2px solid #e6c830;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intro-highlight h3 {
  color: #5d4037;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.intro-highlight p {
  color: #555;
  font-size: 0.95rem;
}

/* Principles Section */
.principles-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #5d4037;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e6c830, #d4a017);
  border-radius: 2px;
}

.section-subtitle {
  color: #777;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.principle-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #e6c830;
}

.principle-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.principle-card h3 {
  color: #5d4037;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.principle-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Modules Section */
.modules-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.module-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.module-card.module-wide {
  grid-column: span 2;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e6c830;
}

.module-icon {
  font-size: 2rem;
}

.module-header h3 {
  color: #5d4037;
  font-size: 1.3rem;
}

.module-list {
  list-style: none;
  padding: 0;
}

.module-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #555;
}

.module-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.module-list.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.module-list.horizontal li {
  flex: 1;
  min-width: 200px;
}

/* Advantages Section */
.advantages-section {
  background: linear-gradient(135deg, #5d4037 0%, #3e2723 100%);
  padding: 4rem 2rem;
}

.advantages-section .section-header h2 {
  color: #fff;
}

.advantages-section .section-header h2::after {
  background: linear-gradient(90deg, #e6c830, #d4a017);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.advantage-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #e6c830;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #e6c830 0%, #d4a017 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content h2 {
  color: #3e2723;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: #5d4037;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #5d4037;
  color: #fff;
}

.btn-primary:hover {
  background: #3e2723;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #fff;
  color: #5d4037;
  border: 2px solid #5d4037;
}

.btn-secondary:hover {
  background: #5d4037;
  color: #fff;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-content h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #e6c830;
  letter-spacing: 1px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #e6c830;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive - Page specific styles */
@media (max-width: 768px) {
  .intro-content {
    grid-template-columns: 1fr;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .module-card.module-wide {
    grid-column: span 1;
  }

  .module-list.horizontal {
    flex-direction: column;
  }

  .module-list.horizontal li {
    min-width: auto;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
