/* ========================================
   GLOBAL STYLES
======================================== */
html {
  scroll-behavior: smooth;
}

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

body {
  background-color: #E8F4FD;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Ensure all text elements inherit the same font family */
p, div, span, .lead, .text-content, .about-text, .page-text, .hero-subtitle {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Header icons styling */
.header-icon-left, .header-icon-right {
  font-size: 0.8rem;
  color: #B87A4B;
}

/* Ashtanga sisters photo styling */
.ashtanga-sisters-photo {
  width: 100% !important;
  max-width: 100% !important;
  height: 360px !important;
  margin: 0 auto !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Shooting star styling */
.shooting-star {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  animation: twinkle 2s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.page-header {
  position: relative;
}

.plogo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-icon-left {
  position: absolute;
  left: -30px;
}

.header-icon-right {
  position: absolute;
  right: -30px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.max-width-800 {
  max-width: 800px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: #666;
}

.sanskrit-quote {
  font-family: 'Satisfy', cursive;
  color: #A0826D;
  font-size: 1.8rem;
  font-weight: 400;
}

/* ========================================
   LINKS
======================================== */
a {
  color: #B87A4B;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

a:hover {
  color: #A0623D;
  text-decoration: none !important;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary,
.btn-warning {
  background-color: #B87A4B !important;
  color: #fff !important;
  border-color: #B87A4B !important;
}

.btn-primary:hover,
.btn-warning:hover {
  background-color: #A0623D !important;
  border-color: #A0623D !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #B87A4B;
  border-color: #B87A4B;
}

.btn-outline:hover {
  background-color: #B87A4B;
  color: #fff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.w-100 {
  width: 100%;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
#header {
  background-color: rgba(255, 248, 231, 0.98);
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

#header.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 248, 231, 1);
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h2Logo {
  font-family: 'Satisfy', cursive;
  font-size: 1.8rem;
  margin: 0;
  color: #2c3e50;
  font-weight: 400;
}

.h2Logo a {
  color: #2c3e50;
}

.h2Logo a:hover {
  color: #B87A4B;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: #B87A4B;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #2c3e50;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ========================================
   HERO SECTION
======================================== */
#hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  /* Optimize for faster loading */
  preload: metadata;
  loading: lazy;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1.5s ease-in;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 300;
  color: #fff;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* ========================================
   SECTIONS
======================================== */
section {
  padding: 80px 0;
}

.intro-section {
  background-color: #fff;
}

.about-section {
  background-color: #fff;
}

.about-section p {
  margin-bottom: 1rem;
  color: #555;
}

.certification-badge {
  max-width: 200px;
  height: auto;
}

/* ========================================
   PRICING CARDS
======================================== */
.classes-section {
  background-color: #f8f9fa;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: none;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card .pricing-title,
.pricing-card .pricing-description,
.pricing-card .pricing-price,
.pricing-card .pricing-features {
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.pricing-card.featured {
  border: none;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B87A4B;
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  letter-spacing: 1px;
}

.pricing-description {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
  font-size: 0.95rem;
}

.pricing-price {
  margin-bottom: 25px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #B87A4B;
}

.price-period {
  font-size: 1.2rem;
  color: #999;
}

/* Smaller text for custom pricing */
.pricing-card:not(.featured) .price-amount,
.pricing-card:not(.featured) .price-period {
  font-size: 1.8rem;
}

/* ========================================
   REVIEWS
======================================== */
.reviews-section {
  background-color: #f8f9fa;
}

.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  color: #B87A4B;
  font-weight: 600;
}

/* ========================================
   SCHEDULE
======================================== */
.schedule-info {
  background-color: #fff;
  border-radius: 15px;
}

.schedule-item {
  padding: 20px;
}

.day-title {
  color: #B87A4B;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.time {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.class-type {
  color: #666;
  margin-bottom: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  background: linear-gradient(135deg, #B87A4B 0%, #D4976C 100%);
  color: #fff;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.cta-section .btn-primary {
  background-color: #fff;
  color: #B87A4B;
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background-color: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
}

/* ========================================
   NEWSLETTER
======================================== */
.newsletter-section {
  background-color: #fff;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-form .btn {
  border-radius: 0;
  padding: 15px 30px;
}

/* ========================================
   FOOTER
======================================== */
#footer {
  background-color: #2c3e50;
  color: #fff;
}

.footer-brand {
  font-family: 'Satisfy', cursive;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.footer-address,
.footer-contact {
  color: #fff;
  margin-bottom: 15px;
}

.footer-contact a {
  color: #fff;
}

.footer-contact a:hover {
  color: #fff;
}

.social-links {
  font-size: 2rem;
}

.social-links a {
  color: #fff;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer-copyright {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.py-5 {
  padding: 80px 0;
}

.py-4 {
  padding: 60px 0;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.text-center {
  text-align: center;
}

.text-md-end {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
  background: linear-gradient(135deg, #2c3e50 0%, #3d5a80 100%);
  padding: 150px 0 80px;
  color: #fff;
  margin-top: 80px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #A0826D;
  font-weight: 300;
}

/* ========================================
   CLASSES DETAIL PAGE
======================================== */
.classes-detail-section {
  background-color: #fff;
}

.class-image-container img {
  width: 100%;
  border-radius: 15px;
}

.rounded-shadow {
}

.schedule-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #B87A4B;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  transform: translateX(5px);
}

.schedule-day {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.schedule-day i {
  font-size: 1.5rem;
  color: #B87A4B;
}

.schedule-day h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #2c3e50;
}

.schedule-details .time {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.class-description {
  color: #666;
  margin-bottom: 0;
}

.location-info {
  background-color: #fff8e7;
  border-radius: 12px;
  border: 2px solid #B87A4B;
}

.location-info h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info i {
  color: #B87A4B;
}

.parking-note {
  color: #28a745;
  font-weight: 600;
  margin: 0;
}

.parking-note i {
  color: #28a745;
}

/* Pricing Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: #666;
}

.pricing-features i {
  display: none;
}

/* What to Expect Section */
.expect-section {
  background-color: #f8f9fa;
}

.expect-item {
  display: flex;
  gap: 25px;
  align-items-flex-start;
}

.expect-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #B87A4B 0%, #D4976C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.expect-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.expect-content p {
  color: #666;
  margin: 0;
}

/* ========================================
   EVENTS PAGE
======================================== */
.event-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-card-body {
  padding: 30px;
}

.event-date {
  color: #B87A4B;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.event-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.event-description {
  color: #666;
  margin-bottom: 20px;
}

.event-card.past {
  opacity: 0.6;
}

.event-card.past .event-card-body {
  background-color: #f8f9fa;
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-section {
  background-color: #fff;
}

.contact-form-container {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #B87A4B;
}

textarea.form-control {
  min-height: 150px;
}

.contact-info-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.contact-info-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card i {
  color: #B87A4B;
}

.contact-info-card p {
  margin-bottom: 10px;
  color: #666;
}

.contact-info-card a {
  color: #B87A4B;
  word-break: break-all;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
}

.faq-item h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: #666;
  margin: 0;
}

/* Info Section */
.info-section {
  background-color: #f8f9fa;
}

/* Event Details */
.event-details {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}

.event-details p {
  margin-bottom: 8px;
}

.event-details i {
  color: #B87A4B;
  margin-right: 5px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 248, 231, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  #hero {
    height: 70vh;
    min-height: 500px;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-heading {
    font-size: 1.8rem;
  }
  
  .cta-heading {
    font-size: 2rem;
  }
  
  .py-5 {
    padding: 50px 0;
  }
  
  .text-md-end {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 14px 35px;
    font-size: 1rem;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}
