
:root {
  --primary-gold: #D4AF37;
  --dark-gold: #B8860B;
  --light-gold: #FFD700;
  --brown: #8B4513;
  --burgundy: #800020;
  --green: #2E8B57;
  --bg-main: #FFF8E1;
  --bg-secondary: #FFFBF0;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --text-gray: #707070;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  color: var(--dark-gold);
  position: relative;
  margin-bottom: 1.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-gold);
}

h3 {
  font-size: 1.5rem;
  color: var(--brown);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: var(--dark-gold);
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  padding: 0 15px;
}


.btn {
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--dark-gold);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

.btn-dark {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: var(--brown);
}


.site-header {
  background-color: var(--bg-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold);
  border-bottom: 2px solid var(--primary-gold);
}

.nav-contact {
  display: flex;
  align-items: center;
}

.nav-contact a {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.nav-contact i {
  margin-right: 0.5rem;
  color: var(--primary-gold);
}


section {
  padding: 5rem 0;
}

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

.section-light {
  background-color: var(--bg-secondary);
}

.section-dark {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.section-dark h2 {
  color: var(--light-gold);
}

.section-dark h2::after {
  background-color: var(--light-gold);
}


.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 248, 225, 0.9) 0%, rgba(255, 251, 240, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-gold);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}


.feature-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

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


.course-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-image {
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-gold);
}

.course-description {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.course-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}


.contact-form {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}


.news-card {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.news-date {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.news-content {
  margin-bottom: 1rem;
}


.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--primary-gold);
  margin-right: 1rem;
  min-width: 24px;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}


.footer {
  background-color: #333;
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

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

.footer-logo img {
  height: 40px;
}

.footer-links h4 {
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #ccc;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  margin-right: 0.75rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-gold);
  color: var(--text-dark);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ccc;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.95);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cookie-settings-content {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary-gold);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary-gold);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-settings-modal .cookie-buttons {
  margin-top: 1.5rem;
  justify-content: flex-end;
}


.thank-you-container {
  text-align: center;
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
}

.thank-you-container h1 {
  color: var(--dark-gold);
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  max-width: 600px;
  margin: 0 auto 2rem;
}


.program-content {
  margin-bottom: 3rem;
}

.program-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.teacher-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-info h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-gold);
}

.teacher-position {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 0.5rem;
}


.stage-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.stage-number {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-gold);
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.stage-title {
  color: var(--dark-gold);
  margin-bottom: 1rem;
  padding-right: 3rem;
}

.stage-list {
  margin-top: 1.5rem;
}

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

.stage-list li:before {
  content: '•';
  color: var(--primary-gold);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}


.pricing-card {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: var(--dark-gold);
  color: var(--text-light);
  padding: 2rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li:before {
  content: '✓';
  color: var(--primary-gold);
  position: absolute;
  left: 0;
  top: 0;
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--green);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}


.iti {
  width: 100%;
}


@media (max-width: 991.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .navbar-collapse {
    background-color: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    border-bottom: none;
    padding: 0.75rem 0;
  }
  
  .nav-link:hover, .nav-link.active {
    border-bottom: none;
    background-color: rgba(212, 175, 55, 0.1);
  }
  
  .teacher-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .teacher-photo {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .feature-card, .course-card, .pricing-card {
    margin-bottom: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-settings-content {
    padding: 1.5rem;
  }
}