/* Importar las Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Great+Vibes&display=swap');


/* General Styles */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(to bottom, #ffccd5, #fff); /* #c94c4c */
    color: #3a4149;;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden; 
}

body {
    /*min-height: 100vh;*/
    position: relative;
    
    background-image: url('img/wave2.svg'); 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: top;
}



h1, h3 {
    font-family: 'Great Vibes', cursive;
    margin: 20px 0;
    color: #f00;
}

h3 {
    font-size: 1.8em;
}

label {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

/* Input Fields */
input[type="text"], textarea {
    width: 90%;
    max-width: 400px;
    padding: 12px 15px;
    margin: 10px 0;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    font-size: 1em;
    font-family: 'Poppins', Arial, sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

input[type="text"]:focus, textarea:focus {
    border-color: #ff6f61;
    outline: none;
    box-shadow: 0 0 8px rgba(255, 111, 97, 0.6);
}

/* Buttons */
button {
    background-color: #e91327;
    color: #fff;
    font-size: 1em;
    font-family: 'Poppins', Arial, sans-serif;
    padding: 10px 15px;
    margin: 15px 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #111;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

button:active {
    transform: translateY(2px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.hidden { display: none; }

#step1, #step2 {
    margin-top: 200px;
}
/* General Styling for the Summary Section */
#summary {
    margin-top: 20px;
    text-align: center;
}

#wish_list {
    list-style-type: none; /* Elimina el estilo de lista predeterminada */
    padding: 0;
    margin: 0;
}

#wish_list > li {
    margin-bottom: 20px; /* Espacio entre personas */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left; /* Alineación del contenido de cada persona */
}

/* Styling for Person Names */
#wish_list > li > strong {
    display: block; /* Coloca el nombre en una línea separada */
    font-size: 1.2em;
    font-weight: bold;
    color: #ff6f61; /* Color navideño */
    margin-bottom: 10px; /* Espacio entre el nombre y la lista de deseos */
}

/* Styling for the List of Wishes */
#wish_list ul {
    list-style-type: disc; /* Usa viñetas para los deseos */
    padding-left: 20px; /* Añade sangría para las viñetas */
    margin: 0;
}

#wish_list ul li {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px; /* Espacio entre deseos */
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* For Hover Effect on Wishes */
#wish_list ul li:hover {
    background-color: #ffccd5; /* Ligero cambio de color en hover */
    transition: background-color 0.3s ease;
}

/* Responsive Adjustments for Desktop */
@media (min-width: 768px) {
    #wish_list > li {
        padding: 20px;
    }

    #wish_list > li > strong {
        font-size: 1.5em;
    }

    #wish_list ul li {
        font-size: 1.1em;
    }
}

/* Containers */
#wishes_container, #app {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

/* Decorative Headings */
.decorative {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    color: #f00;
    margin-bottom: 20px;
    
    display: flex; /* Activa flexbox */
    align-items: center; /* Alinea verticalmente el contenido */
    justify-content: center;
    gap: 10px; /* Espacio entre la imagen y el texto */    
}

.decorative img {
    width: 60px; /* Asegura un tamaño consistente para la imagen */
    display: block; /* Elimina espacio adicional debajo de la imagen */
}

/* For Desktop */
@media (min-width: 768px) {
    body {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    input[type="text"], textarea {
        font-size: 1.2em;
    }

    h3 {
        font-size: 2em;
    }

    button {
        font-size: 1.2em;
        padding: 12px 20px;
    }

    #wish_list {
        max-width: 600px;
    }

    #wishes_container {
        max-width: 600px;
    }
}
