@import url('https://fonts.googleapis.com/css2?family=Bonheur+Royale&family=Gentium+Plus&family=Lexend+Mega:wght@100;200&family=Marck+Script&family=Nanum+Gothic:wght@400;700&display=swap');
* {
 box-sizing: border-box;
}
body {
    font-family: 'Nahum Gotic', sans-serif;
    margin: 0;
    color:gray
}
/*---------------------Etilos base---------------------*/
img {
    display: block;
    width: 100%;
    max-width: 100%;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
.container {
    width: 100%;
    margin: auto;
}
.container--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.column {
    width: 100%;
}

/*---------------------Estilos header---------------------*/

.main-header {
    width:  100%;
}
.logo {
    font-size: 2em;
    color: #808080;
    padding: 10px;
    font-family: 'Bonheur Royale', cursive;
    font-weight: 100;
}
.main-header__contactInfo__phone {
    background: white;
    color: gray;
    margin: 0 auto;
    padding: 10px;
}
.main-header__contactInfo__adresse {
    padding: 10px;
    margin: 0;
}
.main-header [class*="icon-"]:before {
    position: relative;
    top: 2px;
    right: 5px;
}

/*---------------------Estilos del menu---------------------*/
.main-nav {
    width: 100%;
    position: fixed;
    z-index: 2000;
    padding: 0px;
    background: whitesmoke;
}
.icon-menu {
    display: block;
    color: gray;
    border: 1px solid gray;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}
.logohrbf__img {
    width: 200%;
    height: 50px;
    object-fit: cover;
    background: none;
}
.social-icon {
    display: flex;
    justify-content: space-between;
}
.social-icon [class*="icon-"] {
    color: gainsboro;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: gray;
    border-radius: 50%;
}
.social-icon__link {
    text-decoration: none;
}
.menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(244,244,244,.25);
    padding: 0;
    margin: 0;
    list-style: none; 
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height .3s linear;
}
.menu__link {
    display: block;
    padding: 15px;
    color: gray;
    text-decoration: none;
}
.menu__link:hover {
   background: lightgray; 
}

.menu__link--select {
    background: lightgray;    
}
.mostrar {
    height: 270px;
}

/*---------------------Estilos del Banner---------------------*/

.banner {
    margin-top: -55px;
    position: relative;
}
.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(244,244,244,.10);
    z-index: 1000;
    top: 0;
}
.banner__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.banner__content {
    width: 90%;
    color: gray;
    text-align: center;
    position: absolute;
    z-index: 1500;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 2.7em;
    font-weight: 100;
    font-family: cursive;
}

/*---------------------Estilos principales---------------------*/
.group--color .container {
    background: white;
    color: gray;
    padding: 10px;
}

.main__title {
    margin: 15px 0;
    font-size: 1.8em;
    font-family: cursive;
    font-weight: 100;
    
}
.column__title {
    font-size: 1.5em;
    font-family: cursive
}
.column__title2 {
    font-size: 1.6em;
    font-family: cursive;
}
.column__txt2 {
    font-size: 1em;
}
.main__about__description .column:nth-child(2) {
    padding:10px;
    font-size: 1.5em;
    color: gray
}
.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    background: whitesmoke;
    color: gray;
    padding: 10px;
    margin:10px auto;
}
.group__title{
    font-family: cursive;
    text-align: center;
    font-weight: 100;
    font-size: 1.8em;
    margin: 30px;
}
.today-special .column {
    margin-bottom: 30px;
    text-align: center;
}
.today-special__img {
    margin: auto;
    max-width: 350px;   
}
.today-special__title {
    font-size: 1.3em;
    padding-top: 10px;
    padding-bottom: 20px;
}
total-special__price {
    font-size: 1.5em;
    color: grey;
    font-weight: 100;
}

/*---------------------Estilos del footer---------------------*/
.main-footer {
    background: whitesmoke;
    color: gray;
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: .9em;
    text-align: center;
}
.copy {
    text-align: center;
    margin: auto;
    margin-top: 15px;
}

.main-footer [class*="icon-"] {
    color: gray;
    text-decoration: none; 
}

.main-footer [class*="icon-"]:before {
    position: relative;
    top: 5px;
    right: 5px;
}

/*---------------------Estilos responsive---------------------*/

@media screen and (min-width:480px) {
    .logo {
        color: gray;
    }
    .main-header__contactInfo {
        text-align: right;
    }
    .main-header__contactInfo__phone {
        background: none;
    }
    .main-header__contactInfo__address {
        color: gray;
    }
    .main-nav {
        background: rgba(244,244,244,.65)
    }
    .banner {
        margin-top: -150px;
        z-index: -1000;
    }
    .banner__img {
        height: 600px;
    }
    .banner__content {
        font-size: 2em;
    }
    .main {
        padding-bottom: 15px;
    }
    .main__about__description .column:nth-child(2) {
        padding-left: 20px;
        font-size: .9em;
    }
    .main__about__description .btn {
        margin: 0;
    }
    .today-special .column {
        border: 5px solid #ddd;
        padding: 5px;
    }
    .today-special__img {
        height: 200px;
        object-fit: cover;
    }
    .main-footer .container--flex {
        align-items: flex-start;
    }
    .column--50 {
        width: 49%;
    }
    .column--50-25{
        width: 49%;
    }
    .column--33{
        width: 32%;
    }
}

@media screen and (min-width:768px) {
    .main__title {
        font-size: 2.2em;
    }
    .main__about__description {
        margin-top: 30px;
    }
    .column__title2 {
    font-size: 1.7em;
    font-family: cursive;
    }
    .column__txt2 {
    font-size: 1.1em;
    }
    .main__about__description -column--50:nth-child(2) {
        font-size: 1em;
    }
    .main__about__description -column--50:nth-child(2) .column__text {
        line-height: 30px;
    }
    .column--50-25 {
        width: 25%;
    }
    .column__title {
        font-size: 1em;
    }
    .group__title {
        font-size: 2.2em;
    }
}

@media screen and (min-width:1024px) {
    .container {
        width: 1000px;
    }
    .logo {
        font-size: 2.2em;
        padding: 0; 
    }
    .main-header__contactInfo__phone,
    .main-header__contactInfo__address {
        padding-right: 0;
        font-size: 1.15em;
    }
    .main-nav {
        padding: 0;
    }
    .banner__img {
        height: 700px;
    }
    .banner__content {
        font-size: 2.5em
    }
    .icon-menu {
        display: none;
    }
    .menu {
        position: static;
        display: flex;
        height: auto;
        width: auto;
    }
    .menu__link {
        padding: 20px;
    }
    .group--color .container {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
    }
    .main__title {
        font-size: 2.5em;
    }
    .main__about__description -column--50:nth-child(2) .column__text {
        line-height: 45px;
    }
    .today-special__title {
        font-size: 1.4em;
    }
    .today-special__price {
        font-size: 1.8em;
    }
    .main-footer {
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: .98em;
    }
}

@media screen and (min-width:1600px) {
    .container {
        width: 1400px;
    }
    .banner__img {
        height: 800px;
    }
    .main__about__description .column:nth-child(1) img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    .today-especial__img {
        height: 300px;
    }
}











