/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #f5f0e1;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: #f5f0e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav-link:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.nav-btn {
  background: none;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 16px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.nav-btn.signup {
  background: #d4af37;
  color: #111;
}

.nav-btn:hover {
  background: #d4af37;
  color: #111;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #d4af37;
  animation: fadeInUp 1s ease;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-buttons {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
}

.cta {
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cta.primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e6c84c 0%, #d4af37 100%);
}

.cta.secondary {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.cta.secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #e6c84c;
  color: #e6c84c;
}

.stats {
  display: flex;
  gap: 40px;
  font-size: 1rem;
  margin-top: 20px;
}

.stats strong {
  font-size: 1.5rem;
  color: #d4af37;
}

/* Hero Graphic */
.circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

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

/* Features */
.features {
  text-align: center;
  padding: 60px;
}

.features h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 40px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.ico {
  text-align: center;
  max-width: 150px;
}

.ico i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
  transition: 0.3s;
}

.ico i:hover {
  transform: scale(1.2);
  color: #e6c84c;
}

.ico h4 {
  margin: 0;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .stats {
    justify-content: center;
  }
  .icons {
    gap: 30px;
  }
}

 /* Page Header */
.page-header {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.3));
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.page-header h1 {
  text-align: center;
  padding: 0;
  color: #d4af37;
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.page-header p {
  text-align: center;
  font-size: 1.1rem;
  color: #e8dcc8;
  margin: 0;
  font-weight: 500;
}

 /* trial courses */
header p {
  text-align: center;
  font-size: 1.2rem;
  color: #f5f0e1;
  margin-top: -10px;
  margin-bottom: 20px;
}
header h1 {
  text-align: center;
  padding: 2rem;
  color: #b8860b; /* gold */
  margin: 0;
}

.courses {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.course-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
  border-radius: 12px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(184, 134, 11, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 450px;
  flex-shrink: 0;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(184, 134, 11, 0.2);
  border-color: rgba(184, 134, 11, 0.6);
}

.course-card h2 {
  color: #d4af37;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.course-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.course-card ul li {
  margin: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.95rem;
  color: #e8dcc8;
}

.course-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.course-image {
  height: 200px;
  width: 200px;
  margin: 1rem 0;
  flex: 1;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a1a;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #e6c84c 0%, #d4af37 100%);
}

.btn:active {
  transform: scale(0.98);
}

/* Responsive */
@media (max-width: 768px) {
  .course-content {
    flex-direction: column;
    text-align: center;
  }
  .course-image {
    text-align: center;
  }
}

/* Yoga Poses Page */
.poses {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.pose-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
  border-radius: 12px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(184, 134, 11, 0.1);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 350px;
  height: auto;
  flex-shrink: 0;
}

.pose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(184, 134, 11, 0.2);
  border-color: rgba(184, 134, 11, 0.6);
}

.pose-image {
  height: 280px;
  width: 280px;
  margin: 1rem auto 1rem auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pose-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
  padding: 5px;
}

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

.pose-card h2 {
  color: #d4af37;
  margin: 0.5rem 0 0.3rem 0;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pose-benefit {
  color: #e6c84c;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.pose-steps {
  flex-grow: 1;
  overflow-y: auto;
}

.pose-steps h3 {
  color: #d4af37;
  font-size: 0.95rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pose-steps ol {
  margin: 0;
  padding-left: 1.5rem;
  list-style-position: inside;
}

.pose-steps li {
  color: #e8dcc8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.4rem 0;
}

.pose-steps li::marker {
  color: #d4af37;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 30px;
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta {
    width: 100%;
  }

  .page-header {
    padding: 2rem 1rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .poses {
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .pose-card {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .pose-image {
    height: 180px;
    width: 180px;
  }
}

/* Yoga Professionals Page */
.trainers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.trainer-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
  border-radius: 12px;
  border: 1px solid rgba(184, 134, 11, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(184, 134, 11, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4), 0 0 40px rgba(184, 134, 11, 0.25);
  border-color: rgba(184, 134, 11, 0.6);
}

.trainer-image {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.trainer-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border: 4px solid #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.trainer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  z-index: 10;
}

.trainer-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1rem 0;
  font-size: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
}
.trainer-content h2 {
  color: #d4af37;
  margin: 0 0 0.25rem 0;
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  font-style: italic;
  text-align: center;
}
.specialization {
  color: #e6c84c;
  font-size: 0.950.85rem;
  padding-bottom: 0.85;
  margin : 0 0 1rem 0;
  font-style: italic;
}

.trainer-section {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trainer-section:last-of-type {
  border-bottom: none;
}

.trainer-section h3 {
  color: #d4af37;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 6ypx;
  align-items: center;
  gap: 8px;
}

.trainer-section h3 i {
  font-size: 1rem;
}

.trainer-section p {
  margin: 0.25rem 0;
  line-height: 1.3em;
  margin: 0.3rem 0;
  line-height: 1.4;
}

.trainer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trainer-section ul li {
  margin: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.32rem;
  position: relative;
  line-height: 1.4;
}

.trainer-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.trainer-pricing {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price {
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: 700;
}

.period {
  color: #c9a961;
  font-size: 0.9rem;
  font-weight: 500;
}

.buy-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a1a;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #e6c84c 0%, #d4af37 100%);
}

.buy-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .trainers {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .trainers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .trainer-card {
    width: 100%;
    height: auto;
  }

  .trainer-image {
    height: 200px;
    padding: 15px;
  }

  .trainer-image img {
    width: 170px;
    height: 170px;
  }

  .trainer-content {
    padding: 1.25rem;
  }

  .trainer-content h2 {
    font-size: 1.2rem;
  }

  .specialization {
    font-size: 0.9rem;
  }

  .trainer-section h3 {
    font-size: 0.85rem;
  }

  .trainer-section p,
  .trainer-section ul li {
    font-size: 0.8rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .buy-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-height: 44px;
  }
}
