@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Staatliches&family=Varela+Round&display=swap');

::-webkit-scrollbar {
    display: none; /* Oculta la barra de scroll sin deshabilitarla */
}

body {
    font-family: 'Varela Round', sans-serif;
    overflow-x: hidden;
    width: 100%;
    margin: 0px;
    padding: 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    width: 100%;
    height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section {
    margin: 0%;
    padding: 0%;
    width: 100%;
}

button {
    margin: 20px;
    padding: 15px;
    font-size: 20px;
    border-style: none;
    border-radius: 35px;
    color: white;
    background-color: #ffbf00;
    transition: background-color 1s;
}

button:hover {
    background-color: #dd2d4a;
}

.links-button {
    font-family: 'Varela Round', sans-serif;
    font-size: 1.1rem;
    font-weight: 550;
    text-decoration: none;
    color: white;
}

p {
    width: 80%;
    font-size: 1.3rem;
}

.title {
    height: 15px;
    font-family: 'Staatliches', cursive;
    font-size: 6rem;
}

.sub-title {
    width: 90%;
    font-family: 'Amatic SC', cursive; 
    font-size: 2.5rem;
}

/* Descripción de cada sección que se muestra en la home */
.information-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Imagen de cada sección que se muestra en la home */

.section-image {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Portada de la página */

.front-page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ff9770;
    /*ffad01 amarillo, ff958c rojo anaranjado*/
}

.front-page-image {
    width: 200px; 
    height: 200px;
    background-size: cover;
}

/* Seccion de adoptantes */

.adopters-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    background-color: #FFA3A5;
}

/* Seccion de rescatistas */

.rescuers-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #FF86C8;
}

/* Seccion de dueños */

.owners-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    background-color: #ff7aa2;
}

/* Seccion explicativa de la organización */

.us-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    color: #FFA3A5;
}

/* Seccion contactanos */

.contact-us-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    color: white;
    background-color: #ff7f51;
}

.container-contact-us {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.form-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

label {
    width: 20%;
    font-size: 1.1rem;
    color: white;
}

input {
    width: 50%;
    height: 5px;
    font-size: 16px;
    border-radius: 20px;
    border: none;
    padding: 20px;
}

input:focus {
    outline: #dd2d4a solid;
}

.input-section {
    margin: 10px;
    padding: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

textarea {
    padding: 20px;
    width: 50%;
    height: 150px;
    font-size: 1rem;;
    border-radius: 20px;
    border: none;
    resize: none; /* Para que no se pueda agrandar */
}

textarea:focus {
    outline: #dd2d4a solid;
}  

/* Media queries para celular */

@media(max-width: 576px) {

    section {
        padding: 20px;
    }

    /* Titulos de cada seccion, incluido el de la front page, parrafor y subtitulos */
    .title {
        height: 40px;
        font-size: 3rem;
    }
    
    .sub-title {
        font-size: 1.6rem;
    }

    .information-section {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

    /* Saco las imagenes ya que para
    celulares el tamaño es demasiado
    pequeño como para que se puedan ver
    bien, incluso con media queries. */

    .section-image {
        display: none;
    }

    /* Seccion contactanos */
    .contact-us-section {
        justify-content: center;
    }

    .form-section {
        flex-direction: column;
    }

    .input-section {
        justify-content: space-between;
    }

}

/* Media queries para tablet */

@media(min-width: 576px) and (max-width: 992px) {

    section {
        padding: 25px;
    }

    .title {
        height: 40px;
    }

    .information-section {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }
    
    p {
        width: 90%;
    }

    .section-image {
        display: none;
    }

    /* Seccion contactanos */
    .contact-us-section {
        justify-content: center;
    }

    .form-section {
        flex-direction: column;
    }

    .input-section {
        margin: 5px;
        justify-content: space-between;
    }
    
}