/* Yaguarí Candombe - Minimal Colorful Design */

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

:root {
    /* Colors based on the logo */
    --jaguar-gold: #D4A853;        /* Main gold from logo */
    --jaguar-orange: #E67E22;      /* Orange accents */
    --forest-teal: #2C5F41;        /* Dark teal from logo */
    --warm-terracotta: #C0392B;    /* Red-orange from logo */
    --cream-white: #FDF8F0;        /* Warm cream background */
    --deep-brown: #8B4513;         /* Brown earth tone */
    --soft-beige: #F4E8D0;         /* Light beige */
    --charcoal: #2C3E50;           /* Dark text */
    --pure-white: #FFFFFF;

    /* Text colors */
    --text-primary: #2C3E50;
    --text-light: #FFFFFF;
    --text-muted: #7F8C8D;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    background: var(--pure-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(44, 95, 65, 0.1);
    border-bottom: 3px solid var(--jaguar-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--forest-teal);
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: var(--jaguar-gold);
    color: var(--text-light);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--forest-teal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--forest-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    padding: 6rem 2rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23D4A853" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23E67E22" opacity="0.4"/><circle cx="60" cy="80" r="2.5" fill="%23C0392B" opacity="0.2"/><circle cx="30" cy="70" r="1" fill="%23D4A853" opacity="0.5"/></svg>') repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--jaguar-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--cream-white);
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--jaguar-gold);
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
    background: var(--jaguar-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--jaguar-gold);
    border: 2px solid var(--jaguar-gold);
}

.btn-secondary:hover {
    background: var(--jaguar-gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--forest-teal);
    position: relative;
    font-weight: bold;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--jaguar-gold);
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--pure-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--warm-terracotta);
}

.about-image {
    text-align: center;
}

.drum-illustration {
    width: 280px;
    height: 280px;
    background: var(--jaguar-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 4rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    border: 8px solid var(--jaguar-gold);
    animation: drumPulse 3s ease-in-out infinite;
}

@keyframes drumPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.drum-illustration::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

/* Gallery Section */
.gallery {
    background: var(--soft-beige);
}

.gallery-slider {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    position: relative;
}

.slide:nth-child(1) {
    background: var(--forest-teal);
    color: var(--text-light);
}

.slide:nth-child(2) {
    background: var(--jaguar-gold);
    color: var(--charcoal);
}

.slide:nth-child(3) {
    background: var(--warm-terracotta);
    color: var(--text-light);
}

.slide:nth-child(4) {
    background: var(--jaguar-orange);
    color: var(--text-light);
}

.slide:nth-child(5) {
    background: var(--deep-brown);
    color: var(--text-light);
}

.slide:nth-child(6) {
    background: var(--charcoal);
    color: var(--text-light);
}

.slide-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--forest-teal);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background: var(--jaguar-gold);
    color: var(--text-light);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--jaguar-gold);
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    background: var(--forest-teal);
    color: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--jaguar-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--jaguar-gold);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--jaguar-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.contact-form h3 {
    color: var(--jaguar-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--jaguar-gold);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--pure-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--jaguar-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--text-light);
    text-align: center;
    padding: 3rem 0;
}

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

.social-links a {
    color: var(--text-light);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    color: var(--jaguar-gold);
    border-color: var(--jaguar-gold);
    transform: translateY(-3px);
}

.footer p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer p:last-child {
    color: var(--jaguar-gold);
    font-style: italic;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .drum-illustration {
        width: 220px;
        height: 220px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .drum-illustration {
        width: 180px;
        height: 180px;
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .slide {
        height: 400px;
        padding: 2rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .slide {
        height: 350px;
        padding: 1.5rem;
    }

    .slide-content i {
        font-size: 3rem;
    }

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}