/* CSS Variables */
:root {
    --primary-white: #FFFFFF;
    --secondary-orange: #FF6B35;
    --text-black: #1A1A1A;
    --orange-light: #FF8C5A;
    --bg-cream: #FFF8F5;
    --footer-bg: #111111;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-black);
    background-color: var(--bg-cream);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Smooth transitions for all links */
a {
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(3%, 5vw, 5%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.2s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-orange);
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item.dropdown:hover .dropdown-arrow,
.nav-item.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    margin: 0;
    padding: 0;
}

.dropdown-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-black);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.dropdown-item a::after {
    display: none;
}

.dropdown-item a:hover {
    background-color: var(--bg-cream);
    color: var(--secondary-orange);
    transform: none;
}

.dropdown-item a.active {
    background-color: var(--bg-cream);
    color: var(--secondary-orange);
}

/* Donate Button Style */
.nav-donate {
    background: var(--secondary-orange);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-donate:hover {
    background: var(--orange-light);
    color: white !important;
    transform: translateY(-2px);
}

.nav-donate::after {
    display: none;
}

/* Mobile Menu Toggle - Now visible on all screen sizes */
.menu-toggle {
    display: flex;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Navigation Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Cart Link */
.cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-black);
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cart-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.cart-badge {
    display: none;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: 2px;
    right: 2px;
    align-items: center;
    justify-content: center;
    line-height: 20px;
    text-align: center;
}

.cart-badge.show {
    display: flex;
}

.cart-link:hover {
    transform: scale(1.1);
    color: var(--secondary-orange);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Panel - Now works on desktop too */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

@media (min-width: 768px) {
    .mobile-menu {
        max-width: 400px;
        width: 35%;
    }
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header .logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-black);
}

.mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-black);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-links a {
    display: block;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background-color: var(--bg-cream);
    color: var(--secondary-orange);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-arrow {
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-cream);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu li {
    border-bottom: none;
}

.mobile-dropdown-menu a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* Main Content */
main {
    flex: 1;
    opacity: 1;
    animation: fadeIn 0.6s ease-in-out;
}

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

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

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

main.page-loaded {
    animation: fadeIn 0.6s ease-in-out;
}

main.page-transitioning {
    animation: fadeOut 0.4s ease-in-out forwards;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%) clamp(1.5rem, 4vw, 2rem);
    margin-top: auto;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.2s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 479px) {
    nav {
        padding: 0.75rem 3%;
    }

    .logo img {
        height: 40px;
    }

    footer {
        padding: 3rem 3% 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }
}

/* Navigation links - hidden, all items in menu */
    .nav-links {
        display: none;
    }

@media (max-width: 767px) {
    nav {
        padding: 1rem 3%;
    }
}

/* Mobile menu now works on desktop too */
@media (min-width: 768px) {
    .mobile-menu {
        max-width: 400px;
        width: 35%;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
}
:root {
    --primary-white: #FFFFFF;
    --secondary-orange: #FF6B35;
    --text-black: #1A1A1A;
    --orange-light: #FF8C5A;
    --bg-cream: #FFF8F5;
    --footer-bg: #111111;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-black);
    background-color: var(--bg-cream);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(3%, 5vw, 5%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.2s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-orange);
    transform: translateY(-2px);
}


/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: white;
    z-index: 1002;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header .logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-black);
}

.mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-black);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-links a {
    display: block;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background-color: var(--bg-cream);
    color: var(--secondary-orange);
}

/* Main Content */
main {
    flex: 1;
    opacity: 1;
    animation: fadeIn 0.6s ease-in-out;
}

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



/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: clamp(3rem, 8vw, 4rem) clamp(3%, 5vw, 5%) clamp(1.5rem, 4vw, 2rem);
    margin-top: auto;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.2s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive Breakpoints */
/* Mobile: 320px - 479px */
@media (max-width: 479px) {
    nav {
        padding: 0.75rem 3%;
    }

    .logo img {
        height: 40px;
    }

    .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;
    }

    footer {
        padding: 3rem 3% 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

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

/* Large Mobile: 480px - 639px */
@media (min-width: 480px) and (max-width: 639px) {
    nav {
        padding: 1rem 4%;
    }

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

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

/* Mobile Menu - Hide on Desktop */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        padding: 1rem 3%;
    }

    .abstract-text {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
    }

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

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

    .event-countdown {
        gap: 0.75rem;
    }

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

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

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

/* Hero Section specific styles */
.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;
    /* Offset base padding */
}

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

.hero::before {
    content: '';
    position: absolute;
    width: clamp(20rem, 55vw, 45rem);
    height: clamp(20rem, 55vw, 45rem);
    background-image: url('../images/logo_transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.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;
}

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

.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;
}

/* 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 {
    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;
}

@media (max-width: 768px) {
    .announcement-banner {
        padding: 1.5rem 5%;
    }

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

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

/* 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;
}

.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%;
}

.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);
}

@media (max-width: 768px) {
    .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;
    }

    .event-location-btn:last-child {
        margin-bottom: 0;
    }
}

/* 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 (Zelle) */
.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);
}

.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;
}
