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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #faf8f5 0%, #e8f4f8 50%, #f0e8f5 100%);
  min-height: 100vh;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: #2c3e50;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ff6b35;
}

.hero-section {
  min-height: 100vh;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.7) 0%,
    rgba(247, 147, 30, 0.5) 50%,
    rgba(232, 244, 248, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-about {
  background-image: url("../images/about-hero.jpg");
  min-height: 60vh;
}

.hero-contact {
  background-image: url("../images/contact-hero.jpg");
  min-height: 60vh;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  color: #fff;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  transform: scale(1.05);
  text-decoration: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section {
  padding: 5rem 0;
  position: relative;
}

.diagonal-section {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  background: rgba(255, 255, 255, 0.6);
  padding: 7rem 0;
  margin: 3rem 0;
}

.diagonal-section-reverse {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  background: rgba(255, 255, 255, 0.6);
  padding: 7rem 0;
  margin: 3rem 0;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.offset-image {
  transform: translateY(20px);
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-card h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 700;
}

.exercise-block {
  margin-bottom: 4rem;
}

.offset-left {
  transform: translateX(-20px);
}

.offset-right {
  transform: translateX(20px);
}

.exercise-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.exercise-content h3 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.exercise-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.exercise-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.exercise-content ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 700;
}

.layering-cards {
  position: relative;
}

.layer-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.layer-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.layer-card h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 700;
}

.instructor-quote {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #ff6b35;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.instructor-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.instructor-quote p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.instructor-name {
  display: block;
  font-weight: 600;
  color: #ff6b35;
  font-style: normal;
}

.large-quote {
  padding: 2.5rem;
}

.large-quote p {
  font-size: 1.25rem;
}

.daily-tips {
  margin-top: 2rem;
}

.tip-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 4px solid #f7931e;
}

.tip-item strong {
  color: #ff6b35;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-layering {
  position: relative;
}

.faq-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.faq-card h5 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.offset-card-left {
  transform: translateX(-15px);
}

.offset-card-right {
  transform: translateX(15px);
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #34495e;
}

.participant-name {
  display: block;
  font-weight: 600;
  color: #ff6b35;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.philosophy-card h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-weight: 700;
}

.principles-list {
  margin-top: 2rem;
}

.principle-item {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 4px solid #ff6b35;
}

.principle-item strong {
  color: #ff6b35;
  display: block;
  margin-bottom: 0.5rem;
}

.instructor-qualities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.quality-item {
  background: rgba(255, 107, 53, 0.1);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #2c3e50;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 2rem;
}

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

.contact-detail h5 {
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-section {
  padding: 4rem 0;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: #2c3e50;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #ff6b35;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-bottom: 1rem;
}

.legal-content a {
  color: #ff6b35;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #f7931e;
}

.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-section h4,
.footer-section h5 {
  color: #fff;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-legal li {
  margin: 0 1rem;
}

.footer-legal a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b35;
}

.copyright {
  color: #95a5a6;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-link {
  color: #ff6b35;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #f7931e;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .diagonal-section,
  .diagonal-section-reverse {
    clip-path: none;
    padding: 4rem 0;
  }

  .offset-left,
  .offset-right,
  .offset-card-left,
  .offset-card-right {
    transform: none;
  }

  .instructor-qualities {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .footer-legal li {
    margin: 0.5rem 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .legal-content {
    padding: 2rem;
  }

  .thank-you-content {
    padding: 2rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }
}
