/* ============================================
   SADDHA.SENI STUDIO - CLEAN DESIGN
   ============================================ */

:root {
    --primary: #8B1538;
    --primary-dark: #6B0F2A;
    --accent: #D4AF37;
    --light: #FAF8F5;
    --dark: #1A1A1A;
    --gray: #666666;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    padding-top: 76px; /* Offset for fixed navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        padding: 0.5rem 0;
        background: rgba(107, 15, 42, 0.98);
    }

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white !important;
}

    .navbar-brand i {
        color: var(--accent);
    }

.navbar-nav {
    padding: 0;
}

.nav-item {
    margin: 0 5px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 80%;
    }

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(107, 15, 42, 0.98);
        padding: 1rem;
        border-radius: 5px;
        margin-top: 1rem;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>');
        background-size: 100px 100px;
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.hero-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: white;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.motto-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

    .motto-box i {
        font-size: 2.5rem;
        color: var(--accent);
        margin-bottom: 1rem;
    }

    .motto-box blockquote {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-style: italic;
        margin: 0;
    }

.hero-buttons {
    margin-top: 2rem;
}

.btn-custom {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--primary-dark);
    border: 2px solid var(--accent);
}

    .btn-primary-custom:hover {
        background: transparent;
        color: var(--accent);
        transform: translateY(-3px);
    }

.btn-outline-custom {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

    .btn-outline-custom:hover {
        background: var(--accent);
        color: var(--primary-dark);
    }

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 1rem auto 0;
        }

    .section-title p {
        color: var(--gray);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* ============================================
   SERVICES CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border-bottom-color: var(--accent);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5e6e8 0%, #f0e8dc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

    .value-item i {
        font-size: 3rem;
        color: var(--accent);
        margin-bottom: 1rem;
    }

    .value-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .value-item p {
        color: var(--gray);
    }

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

    .footer h5 {
        color: var(--accent);
        font-family: 'Playfair Display', serif;
        margin-bottom: 1.5rem;
    }

    .footer a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        margin-bottom: 0.5rem;
    }

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

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .motto-box blockquote {
        font-size: 1.2rem;
    }

    .btn-custom {
        display: block;
        margin: 0.5rem auto;
        max-width: 300px;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.py-5 {
    padding: 5rem 0;
}

/* ============================================
   WHO ARE WE PAGE
   ============================================ */

/* Hero Section */
.who-hero {
    margin-top: -76px;
    padding-top: 76px;
    position: relative;
}

.who-hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.who-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.who-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #FFB800;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 8px;
    margin-bottom: 2rem;
}

.who-logo {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

/* Who Is Section */
.who-section {
    padding: 5rem 0;
    background: white;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.who-content {
    max-width: 800px;
    margin: 0 auto;
}

    .who-content p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: justify;
    }

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
}

.closing-text {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* Meaning Section */
.meaning-section {
    padding: 5rem 0;
    background: var(--light);
}

.meaning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sun-decoration {
    flex-shrink: 0;
}

.sun-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(212,175,55,0.3));
}

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

.sanskrit-text {
    font-size: 3rem;
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.meaning-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.meaning-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.meaning-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.meaning-note {
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.meaning-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.journey-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    margin-top: 2rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .who-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .who-hero-image {
        height: 400px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 0.75rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .sun-img {
        width: 100px;
        height: 100px;
    }

    .sanskrit-text {
        font-size: 2rem;
    }

    .meaning-header {
        gap: 1.5rem;
    }

    .meaning-subtitle {
        font-size: 1.5rem;
    }
}

/* ============================================
   OUR SERVICES PAGE
   ============================================ */

.services-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -76px;
    padding-top: 76px;
    text-align: center;
}

    .services-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>');
        background-size: 80px 80px;
        opacity: 0.3;
    }

    .services-hero .hero-content {
        position: relative;
        z-index: 2;
        color: white;
    }

    .services-hero .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        color: white;
        margin-bottom: 1rem;
        letter-spacing: 5px;
    }

    .services-hero .hero-subtitle {
        font-size: 1.2rem;
        color: var(--accent);
        letter-spacing: 3px;
        text-transform: uppercase;
    }

/* Courses Section */
.courses-section {
    padding: 5rem 0;
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.course-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.1);
}

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(139,21,56,0.15);
        border-color: var(--accent);
    }

.course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    transform: rotate(360deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.course-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .pricing-card.featured {
        border: 2px solid var(--accent);
        position: relative;
    }

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

    .pricing-header h3 {
        color: white;
        margin: 0;
        font-size: 1.5rem;
    }

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

    .pricing-badge.premium {
        background: var(--gold-light);
    }

.pricing-body {
    padding: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

    .price-item:last-child {
        border-bottom: none;
    }

.price-label {
    font-weight: 600;
    color: var(--dark);
}

.price-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-footer {
    padding: 1.5rem 2rem;
    background: rgba(212,175,55,0.05);
    text-align: center;
}

    .pricing-footer p {
        margin: 0;
        color: var(--gray);
    }

/* Productions Section */
.productions-section {
    padding: 5rem 0;
    background: white;
}

.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.production-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}

    .production-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.production-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.production-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.production-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.production-price {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.price-from {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        height: 40vh;
    }

        .services-hero .hero-title {
            font-size: 2rem;
        }

    .courses-grid,
    .productions-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   OUR ARTS PAGE
   ============================================ */

.arts-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -76px;
    padding-top: 76px;
    text-align: center;
}

    .arts-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>');
        background-size: 80px 80px;
        opacity: 0.3;
    }

    .arts-hero .hero-content {
        position: relative;
        z-index: 2;
        color: white;
    }

    .arts-hero .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        color: white;
        margin-bottom: 1rem;
        letter-spacing: 5px;
    }

    .arts-hero .hero-subtitle {
        font-size: 1.2rem;
        color: var(--accent);
        letter-spacing: 3px;
        text-transform: uppercase;
    }

/* Instagram Section */
.instagram-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-title-large {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.instagram-info {
    margin-top: 2rem;
}

.instagram-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.instagram-handle {
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .instagram-handle:hover {
        color: var(--accent);
    }

    .instagram-handle i {
        margin-right: 0.5rem;
    }

.instagram-showcase {
    position: relative;
}

.showcase-label {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: right;
}

.instagram-grid-link {
    display: block;
    text-decoration: none;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .instagram-grid:hover {
        transform: translateY(-5px);
    }

.grid-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .grid-item:hover img {
        transform: scale(1.1);
    }

/* YouTube Section */
.youtube-section {
    padding: 5rem 0;
    background: white;
}

.youtube-info {
    text-align: right;
}

.youtube-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 1rem;
}

.youtube-handle {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

    .youtube-handle:hover {
        color: #FF0000;
    }

    .youtube-handle i {
        margin-right: 0.5rem;
        color: #FF0000;
    }

.videos-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: #000;
}

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

    .video-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .video-placeholder:hover img {
        transform: scale(1.05);
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.video-placeholder:hover .play-button {
    color: #FF0000;
    transform: translate(-50%, -50%) scale(1.2);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

    .video-title-overlay h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: white;
        margin-bottom: 0.5rem;
        letter-spacing: 3px;
    }

    .video-title-overlay p {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
        margin: 0;
        font-style: italic;
    }

/* Streaming Section */
.streaming-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.streaming-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.streaming-platforms {
    margin-top: 2rem;
}

.platforms-list {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.artist-name {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
}

    .artist-name i {
        margin-right: 0.5rem;
    }

.album-showcase {
    display: flex;
    justify-content: center;
}

.album-cover {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: white;
}

    .album-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .album-cover:hover img {
        transform: scale(1.05);
    }

.album-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(139,21,56,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 2.5rem;
    color: var(--accent);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(139,21,56,0.95), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.gallery-info small {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .youtube-info {
        text-align: left;
    }

    .showcase-label {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .arts-hero {
        height: 40vh;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
    }

    .streaming-title {
        font-size: 1.8rem;
    }

    .platforms-list {
        font-size: 0.8rem;
    }

    .video-title-overlay h3 {
        font-size: 1.5rem;
    }

    .play-button {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .video-thumbnail:hover img {
        transform: scale(1.05);
    }

    .video-thumbnail.hidden {
        opacity: 0;
        pointer-events: none;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 3;
}

.video-thumbnail:hover .play-button {
    color: #FF0000;
    transform: translate(-50%, -50%) scale(1.2);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    z-index: 3;
}

    .video-title-overlay h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: white;
        margin-bottom: 0.5rem;
        letter-spacing: 3px;
    }

    .video-title-overlay p {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
        margin: 0;
        font-style: italic;
    }

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

    .video-player iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

#player1, #player2 {
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .video-thumbnail:hover img {
        transform: scale(1.05);
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 11;
}

.video-thumbnail:hover .play-button {
    color: #FF0000;
    transform: translate(-50%, -50%) scale(1.2);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    z-index: 11;
}

    .video-title-overlay h3 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: white;
        margin-bottom: 0.5rem;
        letter-spacing: 3px;
    }

    .video-title-overlay p {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
        margin: 0;
        font-style: italic;
    }

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -76px;
    padding-top: 76px;
    text-align: center;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212,175,55,0.08) 0%, transparent 50%);
    }

    .contact-hero .hero-content {
        position: relative;
        z-index: 2;
        padding: 2rem;
    }

    .contact-hero .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(4rem, 10vw, 8rem);
        font-weight: 700;
        color: var(--accent);
        line-height: 1;
        margin-bottom: 1.5rem;
        letter-spacing: 5px;
        text-shadow: 4px 4px 0 rgba(107, 15, 42, 0.8), 8px 8px 20px rgba(0, 0, 0, 0.4);
    }

    .contact-hero .hero-subtitle {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.9);
        letter-spacing: 3px;
        font-style: italic;
    }

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

    .contact-info-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="0.5"/></svg>');
        background-size: 100px 100px;
        opacity: 0.5;
    }

.contact-details {
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

    .contact-item:last-of-type {
        border-bottom: none;
    }

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212,175,55,0.1);
    border: 2px solid var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--accent);
    transform: rotate(360deg);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: var(--primary-dark);
}

.contact-text h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-text a,
.contact-text p {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0;
    transition: color 0.3s ease;
}

    .contact-text a:hover {
        color: var(--accent);
    }

.contact-social {
    margin-top: 2rem;
}

    .contact-social h4 {
        font-family: 'Lato', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--accent);
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--accent);
        color: var(--primary-dark);
        border-color: var(--accent);
        transform: translateY(-5px);
    }

/* Sanskrit Display */
.sanskrit-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.sanskrit-top,
.sanskrit-bottom {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.sanskrit-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

    .sanskrit-vertical span {
        font-size: 2.5rem;
        color: rgba(255,255,255,0.8);
        font-weight: 700;
        line-height: 1;
    }

    .sanskrit-vertical .dot {
        font-size: 1.5rem;
        color: var(--accent);
    }

/* Logo Circle */
.logo-circle-display {
    position: relative;
    z-index: 2;
}

.circle-content {
    width: 280px;
    height: 280px;
    background: rgba(107, 15, 42, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    border: 2px solid rgba(212,175,55,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

    .circle-content:hover {
        transform: scale(1.05);
        border-color: var(--accent);
    }

.rose-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    animation: rotateSlow 60s linear infinite;
}

    .rose-decoration svg {
        width: 100%;
        height: 100%;
    }

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    letter-spacing: 3px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--light);
}

.form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-top: 5px solid var(--accent);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .form-header h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .form-header p {
        color: var(--gray);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--accent);
        background: white;
        box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
    }

    .form-control::placeholder {
        color: #aaa;
    }

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139,21,56,0.3);
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(139,21,56,0.4);
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    }

    .btn-submit i {
        transition: transform 0.3s ease;
    }

    .btn-submit:hover i {
        transform: translateX(5px);
    }

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 5px solid var(--accent);
}

    .map-wrapper iframe {
        display: block;
        width: 100%;
        filter: grayscale(20%);
        transition: filter 0.3s ease;
    }

    .map-wrapper:hover iframe {
        filter: grayscale(0%);
    }

/* Alert Styling */
.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid #28a745;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .sanskrit-display {
        margin: 3rem 0;
    }

    .circle-content {
        width: 220px;
        height: 220px;
    }

        .circle-content h3 {
            font-size: 1.2rem;
        }
}

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

    .contact-info-section {
        padding: 4rem 0;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .sanskrit-vertical span {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }

    .circle-content {
        width: 180px;
        height: 180px;
    }

        .circle-content h3 {
            font-size: 1rem;
        }
}

.alert-notification {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 1050;
    animation: slideDown 0.5s ease;
}

.alert-content {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

    .alert-content i:first-child {
        font-size: 1.5rem;
    }

.alert-close {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}