/* 
   Theme: Vedic Yoga - Warm, Heritage, Premium
   Colors: Saffron (#E67E22), Rust (#D35400), Gold (#F1C40F), Cream (#FFFBF0)
*/

:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --secondary: #2C3E50;
    --accent: #F1C40F;
    --bg-cream: #FFFBF0;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif; /* Or Cinzel for more decorative */
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 40px rgba(230, 126, 34, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Navbar */
/* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; /* default */
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Navbar style after scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-symbol {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px auto;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(211, 84, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.highlight {
    color: var(--accent);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Headings & Dividers */
.subheading {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 50px;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.lead {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
}

.mission-box {
    background: var(--bg-cream);
    padding: 30px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 30px;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
   width: 100%;
  height: 200px; /* adjust as needed */
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-content {
    padding: 25px;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-cream);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--secondary), #1a252f);
    color: white;
}

.highlight-card h3 { color: white; }
.highlight-card p { color: #bdc3c7; }
.highlight-card .tag { background: rgba(255,255,255,0.1); color: var(--accent); }

/* Achievements */
.achievements-section {
    background: url('https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?q=80&w=2069&auto=format&fit=crop') fixed center/cover;
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}

.achievements-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.icon-stat i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.founder {
    grid-column: 1 / -1;
    background: var(--bg-cream);
    border: none;
    display: flex; /* Adjust if you want image later */
    justify-content: center;
}

.team-card:hover { border-color: var(--primary); }

.team-card h3 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.role {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.team-card p { font-size: 0.95rem; color: var(--text-light); }

/* Contact Section */
.contact-wrapper {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    background: var(--secondary);
    color: white;
    padding: 50px;
}

.contact-info h2 { color: white; margin-bottom: 15px; }
.contact-info p { margin-bottom: 40px; color: #bdc3c7; }

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-item h5 { color: white; font-size: 1.1rem; margin-bottom: 5px; font-family: var(--font-body); }
.info-item p { margin-bottom: 0; }

.contact-form-container {
    flex: 1.5;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 50px 0;
}

.footer-logo {
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.footer-content p { color: #95a5a6; margin-bottom: 20px; }

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
}

/* Response */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-wrapper { flex-direction: column; }
    .achievements-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        clip-path: circle(0% at 100% 0);
        transition: 0.5s;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
    
    .hamburger { display: block; }
}
