/* Font for this page */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

html{
    scroll-behavior: smooth;
}

/* ------- HEADER -------- */ 

#home header{
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: white;
}

#home header .content{
    max-width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

#home header img{
    max-width: 80px;
}

#home header .content nav ul{
    list-style: none;
    display: flex;
    align-items: center;
}

#home header .content nav ul li a{
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    color: #818181;
    transition: .3s;
}

#home header .content nav ul li a:hover{
    color: black;
}

#home header .content nav ul .contactUs{
    background-color: #EE1B22;
    color: white;
    text-align: center;
    padding: 10px 20px;
    width: 130px;
    height: 45px;
}

#icono-nav{
    color:black;
    display: none;
}

/* ------- HERO -------- */

#hero{
    padding-top: 100px;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#hero .content{
    padding-top: 50px;
    max-width: 702px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hero .content h1{
    font-size: 64px;
    font-weight: 800;
    text-align: center;
}

#hero .content p{
    color: #7B7B7B;
    font-size: 18px;
    text-align: center;
    padding-bottom: 20px;
}

#hero .content p span{
    color: #EE1B22;
}

.clientEmail{
    margin: auto;
    gap: 20px;
}

.clientEmail form input{
    width: 300px;
    height: 50px;
    padding: 10px;
    border: 1px solid #EE1B22;
    font-size: 16px;
}

.clientEmail form button{
    width: 140px;
    height: 50px;
    background-color: #EE1B22;
    color: white;
    border: 1px solid #EE1B22;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.clientEmail form button:hover{
    color: black;
}


/* ------- LOCATION RIVERSIDE -------- */

#location{
    padding: 10px;
    max-width: 1280px;
    margin: auto;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
}

#location .locationsList{
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#location .locationsList .locationCard{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 30px;
    margin: 0 5px;
}

#location .locationsList .locationCard i{
    font-size: 50px;
    color: #EE1B22;
}

#location .locationsList .locationCard h3{
    font-size: 50px;
    font-weight: 800;
}

#location .locationsList .locationCard .phone{
    font-size: 25px;
    color: #7B7B7B;
}

#location .locationsList .locationCard p{
    font-size: 20px;
    color: #7B7B7B;
}

#location .hours{
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 30px;
}

#location .hours .hoursCard h3{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

#location .hours .hoursCard h4{
    font-size: 16px;
    color:#7B7B7B;
    margin-bottom: 10px;
}

#location .hours .hoursCard p{
    font-size: 16px;
    color: black;
    margin-bottom: 10px;
}



/*------- DOWNLOADS SECTION ---------*/
#downloads{
    padding: 40px 0;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}



/*------- SOCIAL ICONS ---------*/
.socialIcons{
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 20px;
    max-width: 300px;
}

.socialIcons .socialIconsList{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.socialIcons .socialIconsList a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 10px;  
    width: 50px;
    height: 50px;
    background-color:pink;
    color: #EE1B22;
    font-size: 30px;
    border-radius: 50%;
    transition: .3s;
}

.socialIcons .socialIconsList a:hover{
    background-color: #EE1B22;
    color: white;
}


/*------- SPECIALS FONTANA ---------*/
#specialsRiverside{
    padding: 20px 0;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#specialsRiverside .specialsHead{
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
}

#specialsRiverside .specialsHead h3{
    font-size: 40px;
    font-weight: 800;
    margin-top: 50px;
}

#specialsRiverside .specialsHead p{
    font-size: 16px;
    color:#7B7B7B;
    margin-bottom: 10px;
}

#specialsRiverside .specialsList{
    margin: auto;
    display: flex;
    justify-content:center;
    gap: 20px;
    flex-wrap: wrap;
}

#specialsRiverside .specialsList .specialCard{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#specialsRiverside .specialsList .specialCard img{
    display: block;
    max-width: 100%;
    object-fit: cover;
}


/*------- SPECIALS FONTANA ---------*/
#specialsFontana{
    padding: 20px 0;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#specialsFontana .specialsHead{
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
}

#specialsFontana .specialsHead h3{
    font-size: 40px;
    font-weight: 800;
    margin-top: 50px;
}

#specialsFontana .specialsHead p{
    font-size: 16px;
    color:#7B7B7B;
    margin-bottom: 10px;
}

#specialsFontana .specialsList{
    margin: auto;
    display: flex;
    justify-content:center;
    gap: 20px;
    flex-wrap: wrap;
}

#specialsFontana .specialsList .specialCard{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#specialsFontana .specialsList .specialCard img{
    display: block;
    max-width: 100%;
    object-fit: cover;
}


/*------- WHY US SECTION ---------*/

#whyUs{
    padding: 40px 0;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#whyUs .whyUsHead{
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
}

#whyUs .whyUsHead h3{
    font-size: 40px;
    font-weight: 800;
    margin-top: 50px;
}

#whyUs .whyUsHead p{
    font-size: 18px;
    color:#7B7B7B;
    margin-bottom: 10px;
}

#whyUs .whyUsList{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

#whyUs .whyUsList .whyUsCard{
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
}

#whyUs .whyUsList .whyUsCard i{
    font-size: 32px;
    color: #FD777C;
}

#whyUs .whyUsList .whyUsCard h4{
    font-size: 21px;
    font-weight: 800;
}

#whyUs .whyUsList .whyUsCard p{
    font-size: 16px;
    color: #7B7B7B;
}

/*------- ABOUT SECTION ---------*/

#about{
    padding: 40px 0;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#about .aboutList{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

#about .aboutList .aboutColumn{
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

#about .aboutList .aboutColumn .frame{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    max-height: 500px;
}

#about .aboutList .aboutColumn .frame img{
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}

#about .aboutList .aboutColumn h3{
    font-size: 40px;
    font-weight: 800;
}

#about .aboutList .aboutColumn p{
    font-size: 18px;
    color:#7B7B7B;
    margin-bottom: 10px;
}

#about .aboutList .aboutText{
    width: 500px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

#about .aboutList .aboutText .miniCard{
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

#about .aboutList .aboutText .miniCard h4{
    font-size: 24px;
    font-weight: 800;
}

#about .aboutList .aboutText .miniCard p{
    font-size: 16px;
    color: #7B7B7B;
}

#about .aboutList .aboutText .miniCard i{
    font-size: 32px;
    color: #FD777C;
}

/*------- FOOTER ---------*/
footer{
    padding: 40px 0;
    max-width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
}

footer .footerContent{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 50px;
}

footer .footerContent .footerLogo img{
    max-width: 120px;
    padding: 10px;
    background-color: white;
    border-radius: 10%;
}

footer .footerContent .footerLinks ul{
    list-style: none;
}

footer .footerContent .footerLinks ul li{
    margin-top: 10px;
}

footer .footerContent .footerLinks ul li a{
    text-decoration: none;
    color:#7B7B7B;
    font-size: 18px;
    transition: .3s;
}

footer .copyRight{
    text-align: center;
    padding: 20px 0;
    color: #7B7B7B;
}

 /*------- MEDIA QUERIES ---------*/
@media screen and (max-width: 768px) {
    nav{
        display: none;
    }
    nav.responsive{
        display: block;
        background-color: rgba(0, 0, 0, .8);
        width: 100%;
        position: absolute;
        top:48px;
        left: 0;
        padding: 10px 0;
    }
    nav.responsive ul{
        display: block !important;
        text-align: center;
    }
    nav.responsive ul li{
        margin: 5px 0;
    }
  
    nav.responsive ul li a:hover{
        color: white !important;
    }

    #icono-nav{
        display: block;
        font-size: 30px;
        margin-right: 20px;
        cursor: pointer;
    }

    #hero .content h1{
        font-size: 40px;
    }

    #hero .content p{
        font-size: 16px;
    }

    #locationRiverside .locationsList{
        flex-direction: column;
        align-items: center;
    }

    #locationRiverside .locationsList .locationCard{
        width: 100%;
        max-width: 350px;
    }

    #specialsRiverside .specialsList{
        flex-direction: column;
        align-items: center;
    }

    #specialsRiverside .specialsList .specialCard{
        width: 100%;
        max-width: 350px;
    }

    #locationFontana .locationsList{
        flex-direction: column;
        align-items: center;
    }

    #locationFontana .locationsList .locationCard{
        width: 100%;
        max-width: 350px;
    }

    #specialsFontana .specialsList{
        flex-direction: column;
        align-items: center;
    }

    #specialsFontana .specialsList .specialCard{
        width: 100%;
        max-width: 350px;
    }

    #whyUs .whyUsList{
        flex-direction: column;
        align-items: center;
    }

    #about .aboutList{
    flex-wrap: wrap;
}
    #about .aboutList .aboutColumn{
        width: 100%;
        max-width: 500px;
    }


    #about .aboutList .aboutText{
        flex-direction: column;
        align-items: center;
    }

    #about .aboutList .aboutText .miniCard{
        width: 100%;
        max-width: 350px;
    }
}


