* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  overflow-x: hidden;
}
.navbar {
  background: linear-gradient(135deg, #ffdab9 0%, #e0f7fa 50%, #e8eaf6 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-brand .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: #ff6b6b !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffdab9 0%, #e0f7fa 50%, #e8eaf6 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 218, 185, 0.7) 0%,
    rgba(224, 247, 250, 0.6) 50%,
    rgba(232, 234, 246, 0.7) 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #34495e;
  max-width: 600px;
}
.btn-primary-custom {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
  border: none;
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  text-decoration: none;
  color: white;
}
.btn-secondary-custom {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #4ecdc4, #44a3a0);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
}
.btn-secondary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
  text-decoration: none;
  color: white;
}
.intro-section {
  padding: 6rem 0;
  background: #ffffff;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
}
.section-text {
  font-size: 1.1rem;
  color: #34495e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.image-wrapper img {
  transition: transform 0.5s ease;
}
.image-wrapper:hover img {
  transform: scale(1.05);
}
.diagonal-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #e8eaf6 0%, #e0f7fa 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 4rem 0;
}
.diagonal-section-reverse {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffdab9 0%, #fff5ee 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  margin: 4rem 0;
}
.warm-up-section {
  padding: 8rem 0;
}
.exercises-section {
  padding: 6rem 0;
  background: #ffffff;
}
.exercise-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.exercise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.card-offset-left {
  transform: rotate(-1deg);
}
.card-offset-right {
  transform: rotate(1deg);
}
.card-offset-left:hover,
.card-offset-right:hover {
  transform: rotate(0deg) translateY(-10px);
}
.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 62, 80, 0.3) 100%);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exercise-card:hover .card-image img {
  transform: scale(1.1);
}
.card-content {
  padding: 2rem;
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.card-text {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.card-link {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}
.card-link:hover {
  color: #ff8e53;
  transform: translateX(5px);
}
.focus-section {
  padding: 6rem 0;
  background: #ffffff;
}
.instructors-section {
  padding: 8rem 0;
}
.instructor-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 15px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.instructor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instructor-card:hover::before {
  opacity: 0.1;
}
.instructor-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.quote-overlay {
  position: relative;
  z-index: 1;
}
.instructor-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #34495e;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.instructor-name {
  font-weight: 700;
  color: #2c3e50;
  text-align: right;
}
.daily-movement-section {
  padding: 6rem 0;
  background: #ffffff;
}
.faq-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #e8eaf6 0%, #e0f7fa 100%);
}
.faq-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  transform: translateX(-10px);
}
.faq-card:nth-child(even) {
  transform: translateX(10px);
}
.faq-card:hover {
  transform: translateX(0) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.faq-question {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.faq-answer {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 0;
}
.testimonials-section {
  padding: 6rem 0;
  background: #ffffff;
}
.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 218, 185, 0.3), rgba(224, 247, 250, 0.3));
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.testimonial-offset-1 {
  transform: rotate(-2deg);
}
.testimonial-offset-2 {
  transform: rotate(1deg);
}
.testimonial-offset-3 {
  transform: rotate(-1deg);
}
.testimonial-card:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.testimonial-text {
  font-size: 1.1rem;
  color: #34495e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  color: #2c3e50;
  text-align: right;
}
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffdab9 0%, #e0f7fa 50%, #e8eaf6 100%);
}
.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.cta-text {
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 2rem;
}
.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}
.footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #ff6b6b;
  transform: translateX(5px);
}
.footer-copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  margin-right: 2rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
}
.btn-cookie-accept {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.btn-cookie-settings {
  padding: 0.75rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cookie-settings:hover {
  background: white;
  color: #2c3e50;
}
.page-hero {
  position: relative;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #ffdab9 0%, #e0f7fa 50%, #e8eaf6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/page-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-hero-text {
  font-size: 1.25rem;
  color: #34495e;
  position: relative;
  z-index: 1;
}
.philosophy-section {
  padding: 6rem 0;
  background: #ffffff;
}
.principles-section {
  padding: 8rem 0;
}
.principle-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.principle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.principle-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.principle-text {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
}
.body-as-space-section {
  padding: 6rem 0;
  background: #ffffff;
}
.instructors-role-section {
  padding: 6rem 0;
  background: #ffffff;
}
.expert-insights-section {
  padding: 8rem 0;
}
.insight-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.insight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4ecdc4, #ff6b6b);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insight-card:hover::before {
  opacity: 0.1;
}
.insight-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.insight-overlay {
  position: relative;
  z-index: 1;
}
.insight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.insight-text {
  font-size: 1rem;
  color: #34495e;
  line-height: 1.8;
}
.contact-form-section {
  padding: 6rem 0;
  background: #ffffff;
}
.contact-form .form-control {
  border: 2px solid #e8eaf6;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}
.contact-form label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.contact-info {
  margin-top: 2rem;
}
.contact-item {
  margin-bottom: 2rem;
}
.contact-label {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.contact-detail {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
}
.thank-you-section {
  padding: 12rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #ffdab9 0%, #e0f7fa 50%, #e8eaf6 100%);
}
.thank-you-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}
.thank-you-text {
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 2rem;
}
.legal-section {
  padding: 10rem 0 6rem;
  background: #ffffff;
}
.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.legal-date {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 3rem;
}
.legal-content {
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #34495e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.legal-content li {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .page-hero-title {
    font-size: 2.25rem;
  }
  .diagonal-section,
  .diagonal-section-reverse {
    clip-path: none;
    margin: 2rem 0;
  }
  .card-offset-left,
  .card-offset-right {
    transform: none;
  }
  .testimonial-offset-1,
  .testimonial-offset-2,
  .testimonial-offset-3 {
    transform: none;
  }
  .faq-card,
  .faq-card:nth-child(even) {
    transform: none;
  }
  .faq-card:hover {
    transform: translateY(-5px);
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .cookie-buttons {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
  .thank-you-title {
    font-size: 2rem;
  }
  .legal-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
}
