/* Este es el archivo style.css */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white; /* Para que todo el texto sea blanco por defecto */
    
    /* Configuración de la imagen */
    background-image: url('hamburguesas-plancha.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Para que no se mueva al hacer scroll */
}

/* 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: 4rem;
    margin: 0;
    text-transform: uppercase;
}

p {
    font-size: 1.5rem;
    color: #2ec4b6; /* Un verde turquesa fresco */
    font-weight: bold;
}

.boton-proximo {
    background-color: #ff5400;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 84, 0, 0.3);
}

.boton-proximo:hover {
    background-color: #ff7b39; /* Un naranja más claro al pasar el mouse */
    transform: scale(1.1); /* Se agranda un poquito */
    transition: all 0.3s ease;
}

/* Estilos para el footer */
footer h4 {
    color: #00bfff; /* Azul cielo brillante */
    font-size: 1.2rem;
    margin: 20px 0 0 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para mas legibilidad */
}

/* Redes Sociales */
.social-links {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff5400;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 84, 0, 0.4);
}

.social-links a:hover {
    background-color: #ff7b39;
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(255, 84, 0, 0.6);
}