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

:root {
    --primary-saffron: #FF6B35;
    --secondary-saffron: #FF8C42;
    --golden: #FFD700;
    --deep-gold: #B8860B;
    --cream: #FFF8DC;
    --white: #FFFFFF;
    --dark-brown: #2C1810;
    --maroon: #800020;
    --emerald: #50C878;
    --ruby: #E0115F;
    --peacock-blue: #005C98;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--secondary-saffron) 50%, #FF9500 100%);
}

/* Floating Prayer Elements */
.floating-prayer {
    position: absolute;
    font-size: 24px;
    animation: prayerFloat 8s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

@keyframes prayerFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 1;
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.8;
    }
}

.blessing-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--golden);
    border-radius: 50%;
    animation: blessingRise 4s infinite ease-out;
    pointer-events: none;
}

@keyframes blessingRise {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.logo-image:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    filter: brightness(1.2);
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-saffron);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    position: relative;
    overflow: hidden;
}

.search-input {
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: 25px;
    background: rgba(255, 215, 0, 0.1);
    outline: none;
    transition: all 0.3s ease;
    width: 200px;
}

.search-input:focus {
    border-color: var(--golden);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cart-icon {
    background: linear-gradient(45deg, var(--primary-saffron), var(--secondary-saffron));
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    font-size: 1.2rem;
}

.cart-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Hero Section - Fixed height and no overlap */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--secondary-saffron) 30%, var(--golden) 70%, #FFB84D 100%);
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lotus" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,215,0,0.1)"/><path d="M20 10 L25 20 L20 30 L15 20 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus)"/></svg>') repeat;
    opacity: 0.4;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.namaste-greeting {
    margin-bottom: 1rem;
    animation: namastePulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.namaste-greeting img {
    height: 35vh;
}

@keyframes namastePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--golden), var(--cream), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

@keyframes titleShimmer {

    0%,
    100% {
        background: linear-gradient(45deg, var(--golden), var(--cream), var(--white));
        -webkit-background-clip: text;
        background-clip: text;
    }

    50% {
        background: linear-gradient(45deg, var(--white), var(--golden), var(--cream));
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-weight: 400;
    color: var(--white);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 2rem;
    border-radius: 15px;
}

.sanskrit-blessing {
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-style: italic;
    color: var(--white);
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        -1px -1px 2px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(44, 24, 16, 0.8);
    padding: 0.75rem 1.5rem;
    display: inline-block;
}

.cta-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-primary {
    background: linear-gradient(45deg, var(--golden), #FFA500);
    color: var(--dark-brown);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--dark-brown);
    border: 3px solid var(--golden);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

.cta-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.cta-secondary:hover {
    background: var(--golden);
    color: var(--dark-brown);
    border-color: var(--golden);
}

/* Festival Showcase - Separate Section */
.festival-showcase-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, #FFFACD 50%, var(--white) 100%);
    position: relative;
}

.festival-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--secondary-saffron), transparent);
    opacity: 0.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    position: relative;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    border-radius: 3px;
}

.festival-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.festival-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.festival-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.festival-card:hover::before {
    left: 100%;
}

.festival-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-saffron);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.festival-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: festivalIconBounce 2s ease-in-out infinite;
    display: block;
}

@keyframes festivalIconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.festival-name {
    font-size: 1rem;
    color: var(--dark-brown);
    font-weight: 600;
    font-family: 'Kalam', cursive;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 50%, #FFFACD 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-family: 'Kalam', cursive;
    font-size: 1.3rem;
    color: var(--primary-saffron);
    margin-bottom: 4rem;
    opacity: 0.8;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-saffron);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: featureIconPulse 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes featureIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-desc {
    color: var(--dark-brown);
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-saffron) 0%, var(--secondary-saffron) 50%, var(--maroon) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::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"><defs><pattern id="prayers" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" text-anchor="middle" fill="rgba(255,255,255,0.05)" font-size="20">🙏</text></pattern></defs><rect width="100" height="100" fill="url(%23prayers)"/></svg>') repeat;
    opacity: 0.3;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--golden);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--golden);
    font-family: 'Cinzel', serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--golden);
    font-size: 1.1rem;
}

.testimonial-location {
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: var(--cream);
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.newsletter-desc {
    color: var(--dark-brown);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary-saffron);
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--golden);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    color: var(--golden);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-section a:hover {
    color: var(--golden);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--golden);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        padding: 0.4rem 1.5rem;
    }

    .sanskrit-blessing {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .search-box {
        display: none;
    }

    .festival-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .showcase-title {
        font-size: 2.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .namaste-greeting img {
        height: 20vh;
    }
    .festival-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .hero-content {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.3rem 1rem;
    }

    .sanskrit-blessing {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}