/* ====== BODY ====== */
body {
    background-color: #f5efe6;
    color: #3e2723;
    font-family: 'Segoe UI', sans-serif;
    padding-top: 80px; /* espacio para navbar fixed */
}

html, body {
    overflow-x: hidden;
}

/* ====== NAVBAR ====== */
.navbar {
    background-color: #3e2723 !important; /* CAFÉ OSCURO SÓLIDO */
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

/* ====== HERO ====== */
.hero {
    background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93");
    background-size: cover;
    background-position: center;
    height: 75vh;
    position: relative;
}

/* Overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    pointer-events: none;
}

/* Texto del hero */
.hero-text {
    position: absolute;
    z-index: 2;
    bottom: 25%;
    left: 10%;
    color: #fff;
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ====== SECCIONES ====== */
.section {
    padding: 70px 20px;
}

/* ====== BLOQUES IMAGEN + TEXTO ====== */
.image-text img,
.image-box {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.text-content {
    padding: 30px;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* ====== CARDS ====== */
.card {
    background-color: #efebe9;
    border: none;
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ====== RESEÑAS ====== */
.review-card {
    text-align: center;
    font-size: 1.1rem;
}

/* ====== FORMULARIO ====== */
.contact-form {
    max-width: 500px;
}

.contact-form .form-control {
    margin-bottom: 15px;
    border-radius: 10px;
}

/* Botón */
.btn-coffee {
    background-color: #4e342e;
    color: #fff;
    border-radius: 30px;
    border: none;
}

.btn-coffee:hover {
    background-color: #3e2723;
}

/* ====== FOOTER ====== */
.footer {
    background-color: #3e2723;
    color: #fff;
    text-align: center;
    padding: 30px;
}

.social-icons a {
    color: #fff;
    font-size: 22px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* ====== ANIMACIONES ====== */
.animate {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero-text {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 20px;
        text-align: center;
    }

    .text-content {
        padding: 15px;
        text-align: center;
    }
}
