/*
Theme Name: Prana Yoga Delhi
Description: Modern, content-rich yoga studio site for Delhi
*/

:root {
  --primary: #3e7c6a;
  --secondary: #f7c873;
  --neutral: #f9f9f6;
  --text: #222;
  --accent: #e67e22;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--neutral);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: 'Segoe UI Semibold', Arial, sans-serif;
  margin-top: 0;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }

.btn {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(62,124,106,0.08);
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(62,124,106,0.15);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--secondary);
  color: var(--text);
  transform: translateY(-2px) scale(1.04);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(90deg, #f9f9f6 60%, #e7f6f1 100%);
  padding: 3rem 0 2rem 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 2rem;
}
.hero-content {
  flex: 1 1 350px;
  min-width: 300px;
  padding-right: 2rem;
}
.hero-image {
  flex: 1 1 350px;
  min-width: 280px;
  text-align: right;
}
.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(62,124,106,0.10);
}
.hero-buttons { margin-top: 2rem; }

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}
.about-text {
  flex: 2 1 350px;
  min-width: 300px;
  padding-right: 2rem;
}
.about-image {
  flex: 1 1 250px;
  min-width: 200px;
}
.about-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(62,124,106,0.08);
}

.features {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 12px rgba(62,124,106,0.04);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--neutral);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(62,124,106,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(62,124,106,0.12);
}

.classes {
  margin-bottom: 3rem;
}
.classes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.class-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(62,124,106,0.06);
  padding: 1.5rem 1rem 1rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.class-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(62,124,106,0.12);
}
.class-card img {
  width: 100%;
  max-width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.gallery {
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(62,124,106,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(62,124,106,0.16);
}

.testimonials {
  background: var(--primary);
  color: #fff;
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
}
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-list blockquote {
  font-size: 1.1rem;
  font-style: italic;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--secondary);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin: 0;
  position: relative;
}
.testimonial-list blockquote span {
  display: block;
  font-size: 0.95em;
  margin-top: 0.5em;
  color: var(--secondary);
  font-style: normal;
}

.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(62,124,106,0.04);
  margin-bottom: 3rem;
  padding: 2rem 0.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat strong {
  font-size: 2.2rem;
  color: var(--primary);
  display: block;
}
.stat span {
  font-size: 1rem;
  color: #666;
}

.cta {
  background: var(--secondary);
  color: var(--text);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.cta .btn {
  margin-top: 1.5rem;
}

.contact {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(62,124,106,0.04);
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.contact-list li {
  margin-bottom: 0.7em;
}
.contact-buttons .btn {
  margin-right: 0.5em;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero, .about {
    flex-direction: column;
    text-align: left;
  }
  .hero-content, .about-text, .hero-image, .about-image {
    padding-right: 0;
    text-align: left;
  }
  .hero-image img, .about-image img {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .hero, .about, .features, .classes, .gallery, .testimonials, .stats, .cta, .contact {
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
  }
  .feature-grid, .classes-list, .gallery-grid, .stats {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 1rem;
  }
  .stats {
    padding: 1rem 0.2rem;
  }
}
