@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@font-face {
    src: url(./assets/fonts/Better\ Together\ Script.ttf);
    font-family: "better-together-script";
}

:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

:link {
    color: #fff;
    text-decoration: none;
}

:visited {
    color: #fff;
}

.main-menu {
    display: flex;
    align-items: center;
    position: absolute;
    top: 65px;
    right: 40px;
    color: #fff;
    font-weight: 600;
}

.main-logo {
    width: 300px;
    height: 150px;
    background-image: url(./assets/img/logo-red.png);
    background-size: cover;
    position: absolute;
    top: 10px;
    left: 40px;
}

.main-menu__items {
    list-style: none;
    display: flex;
}

.main-menu__items li {
    margin-right: 35px;
}

.main-section {
    width: 100%;
    height: 650px;
    background-image: url(./assets/img/comida.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-section__text-container {
    width: 600px;
    height: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding-top: 100px;
}

.main-section__title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
}

.main-section__subtitle {
    font-weight: 400;
    font-size: 20px;
}

#main-section__title--love:hover {
    font-family: "better-together-script";
    font-size: 70px;
    font-weight: 100;
    color: #FF5757;
    cursor: default;
}

.cards-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.cards-container p {
    font-size: 20px;
}

.cards-container__card-left {
    width: 500px;
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    background-color: #DDD7BF;
    color: #FF5757;
    padding: 80px;
}

.cards-container__card-right {
    width: 500px;
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    background-color: #FF5757;
    color: #DDD7BF;
    padding: 80px;
}

.special-menu-section {
    width: 100%;
    height: 650px;
    background-image: url(./assets/img/navidad.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.special-menu-section__text-container {
    width: 500px;
    height: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 0;
    box-sizing: border-box;
}

.special-menu-section__button {
    width: 250px;
    height: 50px;
    padding: 10px;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    border-radius: 2px;
}

.special-menu-section__button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.services-section {
    width: 100%;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.services-section__item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.services-section__item-image-container {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-section__item-image {
    width: 100%;
    height: auto;
    display: block;
}

.services-section__item-text {
    width: 300px;
}

.footer {
    width: 100%;
    height: 150px;
    background-color: #261D1B;
    color: #DDD7BF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
}