/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #f5f0eb 100%);
    padding: 2rem;
    position: relative;
    color: var(--text-black);
    margin-top: -1rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}


.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-black);
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #555;
}

.hero-btn {
    display: inline-block;
    padding: clamp(0.875rem, 2vw, 1rem) clamp(2rem, 5vw, 2.5rem);
    background-color: var(--secondary-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    min-height: 44px;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--secondary-orange);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Abstract Section */
.abstract-section {
    padding: clamp(4rem, 10vw, 6rem) clamp(3%, 5vw, 5%);
    background-color: white;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.abstract-container {
    max-width: 1000px;
    margin: 0 auto;
}

.abstract-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-black);
}

.abstract-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
}

.yoga-highlight {
    background-color: var(--bg-cream);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid var(--secondary-orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.yoga-highlight::before {
    content: 'ॐ';
    position: absolute;
    font-size: clamp(8rem, 20vw, 15rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 107, 53, 0.06);
    z-index: 0;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(-10deg);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.yoga-highlight h3 {
    color: var(--secondary-orange);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.yoga-highlight p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.yoga-highlight p:last-child {
    margin-bottom: 0;
}

.yoga-highlight p strong {
    color: var(--secondary-orange);
    font-weight: 600;
    font-size: 1.15rem;
}

/* Peethas Grid Section */
.peethas-section {
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%) clamp(4rem, 10vw, 6rem);
    background-color: #f9f9f9;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.peethas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.peetha-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.peetha-card:nth-child(1) { animation-delay: 0.1s; }
.peetha-card:nth-child(2) { animation-delay: 0.15s; }
.peetha-card:nth-child(3) { animation-delay: 0.2s; }
.peetha-card:nth-child(4) { animation-delay: 0.25s; }
.peetha-card:nth-child(5) { animation-delay: 0.3s; }
.peetha-card:nth-child(6) { animation-delay: 0.35s; }
.peetha-card:nth-child(7) { animation-delay: 0.4s; }
.peetha-card:nth-child(8) { animation-delay: 0.45s; }
.peetha-card:nth-child(9) { animation-delay: 0.5s; }
.peetha-card:nth-child(10) { animation-delay: 0.55s; }
.peetha-card:nth-child(11) { animation-delay: 0.6s; }
.peetha-card:nth-child(12) { animation-delay: 0.65s; }
.peetha-card:nth-child(13) { animation-delay: 0.7s; }
.peetha-card:nth-child(14) { animation-delay: 0.75s; }
.peetha-card:nth-child(15) { animation-delay: 0.8s; }
.peetha-card:nth-child(16) { animation-delay: 0.85s; }
.peetha-card:nth-child(17) { animation-delay: 0.9s; }
.peetha-card:nth-child(18) { animation-delay: 0.95s; }

.peetha-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 240px;
    background-color: #eee;
    position: relative;
    overflow: hidden;
}

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

.peetha-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-location {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-orange);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.card-deity {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1.2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.card-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chakra-tag {
    font-size: 0.8rem;
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: #666;
}

.card-arrow {
    color: var(--secondary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

/* Announcement Banner */
.announcement-banner {
    background: var(--secondary-orange);
    color: white;
    padding: 2rem 5%;
    text-align: center;
    margin: 0;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.announcement-badge {
    background: white;
    color: var(--secondary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.announcement-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.announcement-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

/* Event Promotion Banner */
.event-banner {
    background: linear-gradient(to bottom, var(--primary-white) 0%, var(--bg-cream) 100%);
    padding: 4rem 5%;
    margin: 0;
    border-bottom: 3px solid var(--secondary-orange);
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.event-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.event-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.event-title {
    margin-bottom: 1rem;
}

.event-title h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'Playfair Display', serif;
}

.event-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #666;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.event-date-time {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    font-weight: 500;
    margin-top: 0.5rem;
}

.event-countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.countdown-item {
    text-align: center;
    background: var(--primary-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    min-width: 110px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.countdown-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-black);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s ease;
}

.countdown-item:hover .countdown-number {
    transform: scale(1.1);
}

.countdown-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.event-detail-item {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-orange);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.event-detail-item h3 {
    color: var(--secondary-orange);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.event-detail-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.event-location {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.event-location-btn {
    display: inline-block;
    background-color: var(--secondary-orange);
    color: white;
    padding: clamp(1rem, 2.5vw, 1.2rem) clamp(2rem, 5vw, 3rem);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.event-location-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.9rem, 2vw, 1rem) clamp(1.8rem, 4vw, 2.4rem);
    background: none;
    border: none;
    color: var(--text-black);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    min-height: 44px;
    position: relative;
    transition: color 0.3s ease;
}

.cta-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: width 0.3s ease;
}

.cta-btn.primary {
    color: var(--text-black);
}

.cta-btn.primary:hover {
    color: var(--text-black);
}

.cta-btn.primary:hover::after {
    width: 100%;
}

.cta-btn.secondary {
    color: var(--text-black);
}

.cta-btn.secondary:hover {
    color: var(--text-black);
}

.cta-btn.secondary:hover::after {
    width: 100%;
}

.cta-btn.primary {
    background: var(--secondary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.cta-btn.primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.cta-btn.secondary {
    background: white;
    color: var(--secondary-orange);
    border: 2px solid var(--secondary-orange);
}

.cta-btn.secondary:hover {
    background: #fff5ef;
    transform: translateY(-2px);
}

.cta-btn button,
button.cta-btn {
    cursor: pointer;
    font-family: inherit;
    text-align: center;
}

/* Upcoming Events */
.upcoming-events {
    background: white;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%) clamp(4rem, 10vw, 6rem);
    border-top: 1px solid #f1eae5;
    border-bottom: 1px solid #e0e0e0;
}

.upcoming-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.upcoming-header h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 0.75rem;
}

.upcoming-header p {
    color: #666;
    font-size: 1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: var(--bg-cream);
    border: 1px solid #f0e5dd;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.event-card-header {
    margin-bottom: 1rem;
}

.event-badge {
    display: inline-block;
    background: #e0e0e0;
    color: #555;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.event-card h3 {
    margin: 0.25rem 0;
    font-size: 1.6rem;
}

.event-card .event-date {
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card .event-card-desc {
    color: #555;
    margin: 1rem 0 1.5rem;
    line-height: 1.7;
}

.event-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.event-card-actions a {
    flex: 1 1 180px;
    text-align: center;
}

.event-card .event-countdown {
    margin: 1.5rem 0;
}

/* Donation Section */
.donation-section {
    background: white;
    padding: clamp(2.5rem, 7vw, 4rem) clamp(3%, 5vw, 5%);
    border-top: 1px solid #f1eae5;
    border-bottom: 1px solid #f1eae5;
}

.donation-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.donation-text h3 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

.donation-text p {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.donation-text a {
    color: var(--secondary-orange);
    font-weight: 700;
    text-decoration: none;
    position: relative;
}

.donation-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: width 0.3s ease;
}

.donation-text a:hover::after {
    width: 100%;
}

.donation-qr {
    justify-self: center;
    text-align: center;
}

.donation-qr img {
    max-width: 260px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Summer Camps Section */
.summer-camps-section {
    background: white;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%);
    border-top: 1px solid #f1eae5;
}

.summer-camps-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.summer-camps-header h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 0.75rem;
    color: var(--text-black);
}

.summer-camps-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.course-card {
    background: var(--bg-cream);
    border: 1px solid #f0e5dd;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

a.course-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.course-card:hover {
    text-decoration: none;
    color: inherit;
}

.course-card h3 {
    color: var(--secondary-orange);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.course-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.course-date {
    color: var(--secondary-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Quick Links Section */
.quick-links-section {
    background: #f9f9f9;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%);
}

.quick-links-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.quick-links-header h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 0.75rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.link-card h3 {
    color: var(--secondary-orange);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.link-card p {
    color: #666;
    font-size: 0.95rem;
}

/* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%);
}

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.about-hero::before {
    content: 'ॐ';
    position: absolute;
    font-size: clamp(12rem, 30vw, 25rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 107, 53, 0.08);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.about-hero::after {
    content: 'ॐ';
    position: absolute;
    font-size: clamp(6rem, 15vw, 12rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 107, 53, 0.05);
    z-index: 0;
    top: 10%;
    left: 5%;
    transform: rotate(-20deg);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-orange) 50%, transparent 100%);
}

.about-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #666;
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.content-section {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-section:nth-of-type(1) { animation-delay: 0.2s; }
.content-section:nth-of-type(2) { animation-delay: 0.4s; }
.content-section:nth-of-type(3) { animation-delay: 0.6s; }
.content-section:nth-of-type(4) { animation-delay: 0.8s; }
.content-section:nth-of-type(5) { animation-delay: 1s; }
.content-section:nth-of-type(6) { animation-delay: 1.2s; }
.content-section:nth-of-type(7) { animation-delay: 1.4s; }

.content-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.content-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--secondary-orange);
    font-family: 'Playfair Display', serif;
    border-left: 5px solid var(--secondary-orange);
    padding-left: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 1.5rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-orange) 0%, transparent 100%);
}

.content-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-black);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.4;
}

.content-section h3:first-of-type {
    margin-top: 1.5rem;
}

.content-section p {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    padding-left: 1rem;
}

.content-section li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
}

.content-section ul li::marker {
    color: var(--secondary-orange);
}

.content-section strong {
    color: var(--secondary-orange);
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff5f0 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--secondary-orange);
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: 'ॐ';
    position: absolute;
    font-size: clamp(6rem, 15vw, 12rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 107, 53, 0.05);
    z-index: 0;
    top: 50%;
    right: -3%;
    transform: translateY(-50%) rotate(-10deg);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.highlight-box h3 {
    color: var(--secondary-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

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

.chakra-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border-top: 5px solid var(--secondary-orange);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chakra-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-orange) 0%, var(--orange-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.chakra-item:hover::before {
    transform: scaleX(1);
}

.chakra-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-top-color: var(--orange-light);
}

.chakra-item h4 {
    color: var(--secondary-orange);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.chakra-item p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 1rem;
}

.chakra-item p:first-of-type {
    margin-bottom: 1rem;
}

.chakra-item p:last-child {
    margin-bottom: 0;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.chakra-item strong {
    color: var(--secondary-orange);
    font-weight: 700;
    display: inline-block;
    margin-right: 0.4rem;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.chakra-item p:has(strong:first-child) {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f5f5f5;
}

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

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section p:has(strong:first-child) {
    font-weight: 500;
}

/* Temple/Peetha Detail Page Styles */
.temple-header {
    text-align: center;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%) clamp(1.5rem, 4vw, 2rem);
    background: white;
}

.temple-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.location-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-cream);
    border-radius: 50px;
    color: var(--secondary-orange);
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(3%, 5vw, 5%);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
}

.temple-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #ddd;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

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

.info-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
}

.info-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.description-section {
    grid-column: 1 / -1;
    background: white;
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.description-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: var(--text-black);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.description-section h3 {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: var(--secondary-orange);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.description-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.description-section p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 479px) {
    .hero {
        min-height: 70vh;
        padding: 2rem 3%;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .peethas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .abstract-section {
        padding: 3rem 3%;
    }

    .yoga-highlight {
        padding: 2rem 1.5rem;
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-container {
        padding: 2rem 3%;
    }

    .about-hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .temple-header {
        padding: 2rem 3% 1rem;
    }

    .content-container {
        padding: 1.5rem 3%;
    }

    .description-section {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 480px) and (max-width: 639px) {
    .peethas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .peethas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .abstract-text {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }

    .announcement-content {
        flex-direction: column;
        gap: 1rem;
    }

    .event-countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }

    .about-container {
        padding: 3rem 3%;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .chakra-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chakra-item {
        padding: 1.5rem;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .content-container {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .event-banner {
        padding: 2.5rem 5%;
    }

    .event-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .event-countdown {
        gap: 1rem;
        margin: 2rem 0;
    }

    .countdown-item {
        padding: 1.5rem 1rem;
        min-width: 90px;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .event-detail-item {
        padding: 1.5rem;
    }

    .event-location {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .event-location-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .announcement-banner {
        padding: 1.5rem 5%;
    }

    .announcement-content {
        flex-direction: column;
        gap: 1rem;
    }

    .announcement-text {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .peethas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chakra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .peethas-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1.5rem;
    }

    .chakra-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-hero {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .chakra-item {
        padding: 1.5rem;
    }
}

/* Live Stream Page Styles */
.livestream-container {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem) clamp(3%, 5vw, 5%);
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--bg-cream) 100%);
}

.countdown-section {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.countdown-section.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.countdown-header {
    margin-bottom: 3rem;
}

.countdown-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.countdown-header p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #666;
    font-weight: 400;
}

.countdown-header .event-date {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    margin-top: 0.5rem;
    font-weight: 500;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.progress-container {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-orange) 0%, var(--orange-light) 50%, var(--secondary-orange) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.6), 
                0 0 30px rgba(255, 107, 53, 0.5),
                0 0 50px rgba(255, 107, 53, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.video-section {
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: none;
}

.video-section.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #666;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

/* Music & Temple Page Styles */
.hero-section {
    margin-top: -1rem;
    padding: clamp(4rem, 16vw, 8rem) clamp(3%, 5vw, 5%) clamp(3rem, 12vw, 6rem);
    text-align: center;
    background: linear-gradient(135deg, #FAFAFA 0%, var(--primary-white) 100%);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section::before {
    content: 'ॐ';
    position: absolute;
    font-size: clamp(12rem, 30vw, 25rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 107, 53, 0.08);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.hero-section::after {
    content: 'ॐ';
    position: absolute;
    font-size: clamp(6rem, 15vw, 12rem);
    font-family: 'Playfair Display', serif;
    color: rgba(255, 107, 53, 0.05);
    z-index: 0;
    top: 15%;
    right: 8%;
    transform: rotate(-15deg);
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
}

.hero-section h1 {
    font-size: clamp(2rem, 9vw, 4.5rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.hero-divider {
    width: clamp(80px, 24vw, 120px);
    height: clamp(2px, 0.8vw, 4px);
    background: var(--secondary-orange);
    margin: clamp(1rem, 4vw, 2rem) auto;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: clamp(1rem, 2.6vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-black);
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: min(1200px, 95%);
    margin: 0 auto;
    padding: 0 clamp(3%, 5vw, 5%);
}

.text-section {
    padding: clamp(3rem, 10vw, 5rem) 0;
}

.text-section h2 {
    font-size: clamp(1.8rem, 5.6vw, 2.8rem);
    margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-black);
}

.text-content {
    font-size: clamp(0.95rem, 2.3vw, 1.15rem);
    line-height: 1.8;
    font-weight: 300;
    max-width: min(900px, 95%);
    margin: 0 auto;
    text-align: left;
    color: #555;
}

.text-content p {
    margin-bottom: clamp(1.2rem, 3.6vw, 1.8rem);
}

.text-content p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--secondary-orange);
    font-weight: 500;
    font-style: italic;
}

.image-banner {
    width: 100%;
    margin: clamp(2rem, 8vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: clamp(1.5rem, 6vw, 3rem);
    color: var(--primary-white);
}

.banner-overlay h2 {
    font-size: clamp(1.5rem, 4.4vw, 2.2rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    color: var(--primary-white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.banner-overlay p {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.two-column-section {
    padding: clamp(3rem, 12vw, 6rem) 0;
    background-color: #FAFAFA;
    margin: clamp(3rem, 10vw, 5rem) 0;
    width: 100%;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(2rem, 8vw, 4rem);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(3%, 5vw, 5%);
}

.column-content {
    background: white;
    padding: clamp(2rem, 6vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.column-content h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--secondary-orange);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.column-content p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #555;
    text-align: left;
}

.column-content p:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    padding: clamp(3rem, 12vw, 6rem) 0;
    background-color: var(--primary-white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.gallery-header {
    text-align: center;
    margin-bottom: clamp(2rem, 8vw, 4rem);
}

.gallery-header h2 {
    font-size: clamp(1.8rem, 5.6vw, 2.8rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.gallery-header p {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    font-weight: 300;
    color: var(--text-black);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 5vw, 2.5rem);
    max-width: min(1200px, 95%);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

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

.video-section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 8vw, 4rem);
}

.video-section-header h2 {
    font-size: clamp(1.8rem, 5.6vw, 2.8rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.video-section-header p {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    font-weight: 300;
    color: var(--text-black);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 6vw, 3rem);
    max-width: min(1200px, 95%);
    margin: 0 auto;
}

.video-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.video-card .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.video-card .video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.video-card .video-wrapper.playing::before {
    opacity: 0;
}

.video-card .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 16vw, 80px);
    height: clamp(60px, 16vw, 80px);
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.play-button-overlay:hover {
    background: rgba(255, 107, 53, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-overlay::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid var(--primary-white);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-info {
    padding: clamp(1.5rem, 5vw, 2.5rem);
    background: var(--primary-white);
}

.video-info h3 {
    font-size: clamp(1.3rem, 3.2vw, 1.6rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    color: var(--text-black);
    font-weight: 600;
}

.video-info p {
    font-size: clamp(0.95rem, 2.1vw, 1.05rem);
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-black);
}

.significance-section {
    padding: clamp(3rem, 12vw, 6rem) 0;
    background-color: var(--primary-white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.significance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 6vw, 3rem);
    margin-top: clamp(1.5rem, 6vw, 3rem);
}

.significance-item {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
}

.significance-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    color: var(--secondary-orange);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-family: 'Playfair Display', serif;
}

.significance-item h3 {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.significance-item p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
    font-weight: 300;
}

.locations-section {
    padding: 3rem 5%;
    background: #f9f9f9;
}

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

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.location-card h3 {
    color: var(--secondary-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.location-info p {
    color: #555;
    margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
    .countdown-display {
        gap: 1rem;
    }

    .countdown-item {
        padding: 2rem 1.5rem;
        min-width: 100px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .livestream-container {
        padding: 2rem 5%;
    }

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

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

    .significance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    margin: auto;
    overflow-y: auto;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-cream);
}

.video-modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-black);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
}

.video-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.video-modal-close:hover {
    background: var(--bg-cream);
    color: var(--secondary-orange);
    transform: rotate(90deg);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-modal-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-description {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-cream);
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-modal {
        padding: 1rem;
    }
    
    .video-modal-content {
        padding: 1.5rem;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .video-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* Puja Services Highlight */
.puja-highlight {
    color: var(--secondary-orange);
    font-weight: 700;
    font-size: 1.1em;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    border-left: 3px solid var(--secondary-orange);
    display: inline-block;
    margin: 0 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.puja-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}