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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #954422 0%, #F3AD3D 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(71, 158, 135, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 221, 181, 0.3) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #F5DDB5;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #954422;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #954422;
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 2rem;
    color: #fff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #fff 0%, #F5DDB5 100%);
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #954422;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #954422, #F3AD3D);
    border-radius: 2px;
}

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

.about-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(149, 68, 34, 0.1);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(149, 68, 34, 0.2);
}

.about-card h3 {
    color: #954422;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #479E87 0%, #954422 100%);
    padding: 5rem 2rem;
    color: #fff;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Repertoire Section */
.repertoire {
    padding: 6rem 2rem;
    background: #fff;
}

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

.repertoire-item {
    background: linear-gradient(135deg, #F5DDB5 0%, #F3AD3D 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: #954422;
    transition: all 0.3s ease;
    cursor: pointer;
}

.repertoire-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 20px rgba(149, 68, 34, 0.2);
}

/* Documentary Section */
.documentary {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #954422 0%, #F3AD3D 100%);
    color: #fff;
}

.documentary-content {
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: center;
}

.documentary-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #F5DDB5;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 3rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.documentary-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: #F5DDB5;
}

.contact-content {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.contact-item h4 {
    color: #954422;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #555;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(188, 24, 136, 0.5);
}

.btn-donate {
    background: #F3AD3D;
    color: #954422;
    box-shadow: 0 4px 15px rgba(243, 173, 61, 0.3);
}

.btn-donate:hover {
    background: #479E87;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(71, 158, 135, 0.4);
}

/* Footer */
footer {
    background: #954422;
    color: #F5DDB5;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #F3AD3D;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-links a {
    color: #F5DDB5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #F3AD3D;
    transform: translateY(-5px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .repertoire-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .documentary-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons .btn,
    .documentary-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}