/* ========== GLOBAL STYLES ========== */
* {
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}
body {
    background: #fef9e4;
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: #fae8cf !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: #cb7b2e !important;
    font-size: 1.6rem;
}
.nav-link {
    color: #5a3e2b !important;
    font-weight: 500;
}
.nav-link:hover, .active {
    color: #cb7b2e !important;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background-color: #f7b05e;
    border: none;
    color: #3b2a1f;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background-color: #e6993a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247,176,94,0.3);
}

/* ========== HERO SECTION with background image ========== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/childrenPlaying.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
    color: white;
}
.hero h1 {
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero .lead {
    color: #fef9e4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.badge-spark {
    background-color: #f7b05e;
    color: #3b2a1f;
    border-radius: 40px;
    padding: 8px 18px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
}

/* ========== SECTION TITLES ========== */
.section-title {
    color: #b4602a;
    font-weight: 700;
    border-left: 6px solid #f7b05e;
    padding-left: 20px;
    margin-bottom: 2rem;
}

/* ========== SERVICE CARDS ========== */
.card-service {
    border: none;
    border-radius: 1.5rem;
    background: white;
    transition: 0.2s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.card-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
/* ========== ABOUT (Imágen Flotante) ========== */
.about-img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

/* En móviles, sin float imagen centrada */
@media (max-width: 576px) {
    .about-img {
        float: none !important;
        display: block;
        margin: 0 auto 1rem auto;
        width: 90%;
    }
}

/* ========== GALLERY ========== */
.gallery-img {
    border-radius: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gallery-img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}
/* Galería - textos debajo de las imágenes */
.gallery-caption {
    font-size: 0.9rem;
    color: #5a3e2b;
    margin-top: 6px;
    line-height: 1.3;
    min-height: 2.5rem; /* para mantener uniformidad */
}

/* Modal - descripción */
#modalDescription {
    background-color: #fef9e4;
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 12px 20px;
}

/* ========== FAQ ACCORDION ========== */
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff0dd;
    color: #b4602a;
}

/* ========== FOOTER ========== */
footer {
    background-color: #fae8cf;
    border-radius: 2rem 2rem 0 0;
}
.social-icons a {
    color: #cb7b2e;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.2s;
}
.social-icons a:hover {
    color: #f7b05e;
    transform: scale(1.1);
}

/* ========== MAP RESPONSIVE ========== */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 1.5rem;
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* ========== UTILITIES ========== */
.bg-light-custom {
    background-color: #fff6ea !important;
}