/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Satoshi', sans-serif;
}

/* Fondo con imagen */
body {
    background-image: url('home-hero.png'); /* Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Capa oscura encima para contraste */
.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Estilos del texto */
.title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 1.25rem;
    margin-top: 1rem;
    color: #BB8F46;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.logo {
    margin-top: 1.5rem;
    width: 180px;
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}