/* Gotham Font Family */
@import url('https://fonts.cdnfonts.com/css/gotham');

:root {
    --primary-red: #e23e23;
    --primary-gold: #faba34;
    --dark: #1a1a1a;
    --light: #f8f9fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold) !important;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62e1a 100%);
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: var(--primary-gold);
    margin: 0 auto 2rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

.btn-custom {
    background: var(--primary-gold);
    color: var(--dark);
    padding: 1rem 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #f9a91a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(250, 186, 52, 0.3);
    color: var(--dark);
}

/* Festival Elements */
.festival-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    /* opacity: 0.6; */
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.leaf {
    top: 10%;
    left: 5%;
    width: 120px;
    animation-delay: 0s;
}

.kite {
    top: 5%;
    left: 25%;
    width: 150px;
    animation-delay: 1s;
}

.diya {
    top: 15%;
    right: 20%;
    width: 140px;
    animation-delay: 2s;
}

.kite2 {
    top: 10%;
    right: 5%;
    width: 130px;
    animation-delay: 0.5s;
}

.boat {
    bottom: 13%;
    left: 4%;
    width: 200px;
    animation-delay: 1.5s;
}

.flowers {
    bottom: 1%;
    left: 30%;
    width: 160px;
    animation-delay: 2.5s;
}

.crackers {
    bottom: 4%;
    right: 10%;
    width: 180px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about-section {
    background: var(--light);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 1.5rem auto 0;
}

.section-divider-light {
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    margin: 1.5rem auto 0;
}

.content-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.section-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Concept Section */
.concept-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    position: relative;
}

.concept-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(250,186,52,0.1)"/></svg>');
}

.concept-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(250, 186, 52, 0.2);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.concept-text {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* Pillars Section */
.pillars-section {
    background: white;
    padding-bottom: 8rem !important;
}

.competition-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-top: 1rem;
    letter-spacing: 1px;
}

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

.competition-lead {
    font-size: 1.3rem;
    line-height: 2;
    color: #333;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.competition-highlight {
    margin-top: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c62e1a 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(226, 62, 35, 0.3);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.highlight-box p {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.details-section {
    background: var(--light);
    padding: 3rem;
    border-radius: 15px;
}

.details-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.detail-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.exposure-banner {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f9a91a 100%);
    color: var(--dark);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(250, 186, 52, 0.3);
}

.banner-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.exposure-banner h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.exposure-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.competition-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-red);
}

.competition-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.competition-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.competition-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.competition-list li {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.competition-list li::before {
    content: '\2022';
    color: var(--primary-gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.pillar-card {
    background: white;
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(226, 62, 35, 0.2);
    border-color: var(--primary-red);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.pillar-card:hover .pillar-icon {
    color: var(--primary-gold);
}

.pillar-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pillar-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .content-card, .competition-card {
        padding: 2rem;
    }
    
    .element {
        width: 80px !important;
    }
    
    .boat {
        width: 120px !important;
    }
    
    .crackers {
        width: 100px !important;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-text, .competition-text {
        font-size: 0.95rem;
    }
    
    .content-card, .competition-card {
        padding: 1.5rem;
    }
}
