:root {
  --primary-color: #760606;
  --secondary-color: #a84242;
  --accent-color: #d87373;
  --dark-purple: #4a0404;
  --light-bg: #fff5f5;
  --text-dark: #2d2d2d;
}

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

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(118, 6, 6, 0.95) 0%,
      rgba(74, 4, 4, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600")
      center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

.btn-cta {
  background: var(--secondary-color);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
  animation: fadeInUp 1.4s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(168, 66, 66, 0.5);
  background: #8f3535;
  color: white;
}

.btn-full {
  width: 100%;
  display: block;
  margin-top: 20px;
}

.btn-large {
  font-size: 1.4rem;
  padding: 22px 60px;
}

/* Floating Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--dark-purple);
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #666;
  font-weight: 500;
}

.section-description {
  font-size: 1.3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
}

/* What Is Section */
.what-is-section {
  background: var(--light-bg);
}

/* Kins Section */
.kins-section {
  background: white;
}

.kin-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.kin-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(118, 6, 6, 0.2);
}

.kin-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.kin-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-purple);
}

.kin-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Approaches Section */
.approaches-section {
  background: var(--light-bg);
}

.approaches-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.approaches-table thead {
  background: var(--primary-color);
  color: white;
}

.approaches-table thead th {
  padding: 20px 15px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  vertical-align: middle;
}

.approaches-table tbody td {
  padding: 20px 15px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #666;
  vertical-align: middle;
}

.approaches-table tbody tr:last-child td {
  border-bottom: none;
}

.approaches-table tbody tr:hover {
  background: rgba(118, 6, 6, 0.05);
}

.kin-name {
  font-weight: 600;
  color: var(--dark-purple);
  font-size: 0.95rem !important;
}

/* Course Section */
.course-section {
  background: white;
}

.phases-container {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--accent-color);
}

.phase-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(118, 6, 6, 0.1);
}

.phase-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.phase-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.phase-content h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-purple);
}

.course-info-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--primary-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-section {
  margin-bottom: 30px;
}

.info-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-section h4 i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.info-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.price {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
}

/* Breathwork Section */
.breathwork-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-purple) 100%
  );
  color: white;
}

.breathwork-section .section-title {
  color: white;
}

.breath-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

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

.breath-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breath-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.breath-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.why-works-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.reason-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reason-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: white;
}

/* Who Section */
.who-section {
  background: var(--light-bg);
}

.who-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.who-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(118, 6, 6, 0.2);
}

.who-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.who-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* How Section */
.how-section {
  background: white;
}

.how-card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.how-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(118, 6, 6, 0.15);
}

.how-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.how-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-purple);
}

.how-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(216, 115, 115, 0.2) 0%,
    rgba(168, 66, 66, 0.2) 100%
  );
  padding: 100px 0;
  text-align: center;
}

.contact-info {
  margin-top: 50px;
}

.contact-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-item p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--dark-purple);
  color: white;
  padding: 60px 0 30px;
}

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

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

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

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

.social-icons {
  font-size: 1.8rem;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .approaches-table {
    font-size: 0.8rem;
  }

  .approaches-table thead th,
  .approaches-table tbody td {
    padding: 12px 8px;
  }
}

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

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

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

  .section-subtitle {
    font-size: 1.1rem;
  }

  .btn-cta {
    padding: 15px 40px;
    font-size: 1rem;
  }

  .btn-large {
    font-size: 1.2rem;
    padding: 18px 45px;
  }

  .approaches-table {
    display: block;
    overflow-x: auto;
  }

  .phases-container {
    padding: 25px;
  }

  .course-info-box {
    margin-top: 30px;
  }

  .price {
    font-size: 2rem !important;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
