@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Noto+Sans+Telugu:wght@400;600;700&display=swap');

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

body {
    font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
    background: linear-gradient(135deg, 
        #1a1a2e 0%,     /* Deep Navy */
        #16213e 25%,    /* Dark Blue */
        #0f3460 50%,    /* Royal Blue */
        #533a71 75%,    /* Deep Purple */
        #6c5b7b 100%);  /* Muted Purple */
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Container Styling */
.container {
    max-width: 1200px;
    margin: 0 auto;  
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* Diwali Diya Animations - Gentle & Eye-friendly */
.diwali-diyas {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.diya {
    position: absolute;
    font-size: 2rem;
    animation: gentleFlicker 4s ease-in-out infinite alternate;
}

.diya-1 { top: 8%; left: 8%; animation-delay: 0s; }
.diya-2 { top: 12%; right: 12%; animation-delay: 0.7s; }
.diya-3 { top: 50%; left: 3%; animation-delay: 1.4s; }
.diya-4 { top: 65%; right: 8%; animation-delay: 2.1s; }
.diya-5 { bottom: 18%; left: 15%; animation-delay: 2.8s; }
.diya-6 { bottom: 12%; right: 20%; animation-delay: 3.5s; }
.diya-7 { top: 35%; right: 5%; animation-delay: 4.2s; }
.diya-8 { top: 80%; left: 50%; animation-delay: 4.9s; }

@keyframes gentleFlicker {
    0% { 
        transform: scale(1) rotate(-0.5deg);
        filter: brightness(1.1) drop-shadow(0 0 6px #ffd700);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.02) rotate(0.5deg);
        filter: brightness(1.2) drop-shadow(0 0 10px #ffd700);
        opacity: 1;
    }
    100% { 
        transform: scale(1) rotate(-0.5deg);
        filter: brightness(1.1) drop-shadow(0 0 6px #ffd700);
        opacity: 0.8;
    }
}

/* Floating Cultural Elements */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 1.3rem;
    animation: gentleFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.lotus { top: 25%; left: 80%; animation-delay: 0s; }
.peacock { top: 55%; left: 90%; animation-delay: 1s; }
.temple { top: 75%; left: 85%; animation-delay: 2s; }
.rice { top: 45%; left: 5%; animation-delay: 3s; }
.rangoli { top: 85%; left: 15%; animation-delay: 4s; }
.conch { top: 35%; left: 8%; animation-delay: 5s; }

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-12px) rotate(2deg);
        opacity: 0.7;
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.title-section {
    margin-bottom: 30px;
}

.main-title-telugu {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #f8f9fa;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-title-english {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e9ecef;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 25px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tagline-telugu {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 12px;
    font-weight: 400;
}

.tagline-english {
    font-size: 1.2rem;
    color: #ced4da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin-bottom: 40px;
    font-weight: 300;
}



/* Cultural Showcase */
.cultural-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.culture-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.culture-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.culture-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.culture-item:hover .icon {
    transform: scale(1.05);
}

.culture-item .text {
    color: #f8f9fa;
    font-weight: 500;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Coming Soon Section */
.coming-soon-section {
    background: rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.diwali-greeting {
    margin-bottom: 30px;
}

.diwali-text {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 2.2rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    font-weight: 600;
}

.diwali-english {
    font-size: 1.6rem;
    color: #e9ecef;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-style: italic;
    font-weight: 400;
}

@keyframes gentlePulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

.coming-soon-content {
    margin-top: 30px;
}

.coming-soon-title {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #f8f9fa;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.coming-soon-english {
    font-size: 2.2rem;
    color: #ced4da;
    font-weight: 600;
    letter-spacing: 6px;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.description {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 1.3rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 400;
}

.description-english {
    font-size: 1.2rem;
    color: #e9ecef;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Heritage Section */
.heritage-section {
    background: rgba(255, 255, 255, 0.06);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.heritage-title {
    font-size: 2.8rem;
    color: #f8f9fa;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

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

.heritage-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.heritage-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.3);
}

.heritage-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.heritage-item:hover .heritage-icon {
    transform: scale(1.05);
}

.heritage-item h4 {
    font-size: 1.4rem;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.heritage-item .telugu {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    font-weight: 500;
}

.heritage-item .desc {
    font-size: 1rem;
    color: #ced4da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    font-weight: 300;
}

/* Footer */
.festival-footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.diwali-wishes {
    margin-bottom: 25px;
}

.diwali-message {
    font-family: 'Noto Sans Telugu', sans-serif;
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
    font-weight: 500;
}

.diwali-english {
    font-size: 1.2rem;
    color: #e9ecef;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-style: italic;
    font-weight: 300;
}

.social-section {
    margin-top: 20px;
}

.follow-text {
    font-size: 1.1rem;
    color: #e9ecef;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    font-weight: 400;
}

.social-links {
    margin: 20px 0;
}

.social-instagram {
    display: inline-block;
    padding: 18px;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.3);
}

.social-instagram:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 30px rgba(228, 64, 95, 0.4);
}

.blessing {
    font-size: 1.1rem;
    color: #ced4da;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    margin-top: 25px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title-telugu {
        font-size: 2.8rem;
    }
    
    .main-title-english {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .tagline-telugu {
        font-size: 1.2rem;
    }
    
    .tagline-english {
        font-size: 1rem;
    }
    
    .coming-soon-title {
        font-size: 2.8rem;
    }
    
    .coming-soon-english {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    
    .heritage-title {
        font-size: 2.2rem;
    }
    
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cultural-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-section, .coming-soon-section, .heritage-section, .festival-footer {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .main-title-telugu {
        font-size: 2.2rem;
    }
    
    .main-title-english {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .coming-soon-english {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .heritage-title {
        font-size: 1.8rem;
    }
    
    .cultural-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-section, .coming-soon-section, .heritage-section, .festival-footer {
        padding: 25px 20px;
    }
    
    .heritage-item {
        padding: 25px 20px;
    }
    
    .diya {
        font-size: 1.2rem;
    }
    
    .float-element {
        font-size: 1rem;
    }
}
