/* ===== ESTILOS BASE (MÓVIL) ===== */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: white; 
    background-image: url('hamburguesas-plancha.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* scroll en móvil para mejor rendimiento */
}

/* Capa de contraste (para que la imagen no brille tanto y se lea el texto) */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Capa negra con 60% de transparencia */
    z-index: 1;
}

/* Esto asegura que el texto esté por encima de la capa negra */
h1, h2, p, .boton-proximo, footer h4 {
    position: relative;
    z-index: 2;
}

h1 {
    color: #ff5400; /* Naranja hamburguesa vibrante */
    font-size: 2rem; /* Más pequeño en móvil */
    margin: 0;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    color: #2ec4b6; /* Un verde turquesa fresco */
    font-weight: bold;
    text-align: center;
    padding: 0 15px;
}

.boton-proximo {
    background-color: #ff5400;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 84, 0, 0.3);
    font-size: 1rem;
}

.boton-proximo:hover {
    background-color: #ff7b39;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Estilos para el footer */
footer h4 {
    color: #00bfff; /* Azul cielo brillante */
    font-size: 1rem;
    margin: 20px 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== PANTALLAS GRANDES (TABLET/PC) ===== */
@media (min-width: 601px) {
    body {
        background-attachment: fixed; /* fijo en pantallas grandes */
    }

    h1 {
        font-size: 4rem; /* Mucho más grande en PC */
    }

    p {
        font-size: 1.5rem;
        padding: 0;
    }

    .boton-proximo {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    footer h4 {
        font-size: 1.2rem;
    }
}

/* Redes Sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    z-index: 3;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #ff5400; /* naranja de la marca */
    color: #fff; /* iconos blancos */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 0;
}

.social-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
    stroke: currentColor;
}

.social-links a:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.6));
}

/* En pantallas grandes, aumenta el tamaño de los iconos */
@media (min-width: 601px) {
    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}