@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-color: #dc3545;
}

.logo {
    width: 30px;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.button-view-menu {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 15px;
    color: #fff;
    background: transparent;
    transition: 0.3s ease;
}

.button-view-menu:hover,
.button-view-menu:active {
    background: #dc3545;
    color: #fff;
}

.primary-text {
    color: var(--text-color);
}

header {
    height: 100vh;
    background: url("./img/home_bg.jpeg") center center/cover no-repeat;
    position: relative;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    width: 100%;
}

#navbar img {
    width: 80px;
    margin-left: 100px;
}

nav ul {
    display: flex;
    margin-right: 100px;
}

nav ul li a {
    padding: 15px 20px;
    font-weight: 600;
}

nav ul li a:hover {
    border-bottom: 2px solid #dc3545;
}

header .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75%;
    position: relative;
}

header::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.7);
}

header .content h1 {
    font-size: 40px;
    color: #fff;
}

header .content p {
    color: #fff;
    margin: 20px 0 40px;
}

header * {
    z-index: 10;
}

.section-text {
    margin-bottom: 30px;
    font-size: 15px;
}


/*-------------------------------------------------about----------------------------------------------------------------*/

#about {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}

#about .title {
    text-align: center;
    margin: 4rem;
    margin-bottom: 40px;
}

#about .title h2 {
    font-size: 40px;
    color: #383838;
    margin-bottom: 20px;
}

#about .title p {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
}

#about .about-content {
    display: flex;
    justify-content: space-between;
}

#about .about-content img {
    width: 500px;
}

#about .about-content p {
    color: #9a9a9a;
    margin-right: 7rem;
    font-weight: 500;
    line-height: 1.6;
}

#about .about-content .button-learn-more {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #000000;
    border-radius: 15px;
    color: #000000;
}

.button-learn-more:hover {
    background: #6e6e6e;
}


/*-----------------------------------------------------------animation-------------------------------------------------------------------*/

.about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    margin: 40px 5px 0 5px;
    opacity: 0;
    animation: fade 3s ease-out forwards;
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translatey(200px);
    }
    100% {
        opacity: 1;
        transform: translatey(0);
    }
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* ---------------------------------------------------------------bootstrap-------------------------------------------------------------------------------*/

.carousel-item img {
    height: 550px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
}

.carousel-caption {
    bottom: 20px;
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 770px) {
    .carousel-caption h5 {
        font-size: 18px;
    }
    .carousel-caption p {
        font-size: 14px;
    }
}

#gallery {
    height: 107vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #303537;
}

#gallery h2 {
    color: #ffffff;
}


/*----------------------------------------------------offers-----------------------------------------------------------------------------*/

#offers {
    height: 90vh;
    display: flex;
    justify-content: center;
    background: url(./img/offer-background.jpg) center center/cover no-repeat;
}

#offers .title {
    text-align: center;
    margin: 4rem;
}

#offers .offers-items {
    text-align: center;
    margin: 4rem;
    display: flex;
    justify-items: center;
    align-items: center;
    text-align: center;
    color: #fff;
    gap: 120px;
}

#offers .offers-items img {
    width: 250px;
}

#offers h2 {
    font-size: 30px;
    color: #ffffff;
    margin: 15px 0;
}

#offers .offers-items h3 {
    font-size: 25px;
    color: #ffffff;
    margin: 15px 0;
}

#offers .offers-items p {
    font-size: 15px;
    margin: 15px 0;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
}

#offers .offers-items span {
    font-size: 18px;
    font-weight: 550;
    margin-left: 6px;
}

#offers .title p {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 450;
}


/*----------------------------------------------------menu------------------------------------------------------*/

#menu {
    background: #f4f4f4;
    padding: 5rem 0;
}

#menu .title {
    text-align: center;
    margin: 4rem;
}

#menu .title h2 {
    font-size: 40px;
    color: #383838;
    margin-bottom: 20px;
}

#menu .title p {
    color: #9a9a9a;
    font-size: 16px;
    font-weight: 400;
}

#menu .menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
}

#menu .menu-items .menu-item img {
    border-radius: 50%;
    padding: 20px;
    margin: 25px;
    text-align: center;
    width: 150px;
}


/*/////////////////////////////////////////*/

#menu .menu-items .menu-item h3 {
    color: #000;
    border-bottom: 1.5px dashed #000000;
    padding-bottom: 10px;
    font-size: 25px;
    position: relative;
}

#menu .menu-items .menu-item span {
    position: absolute;
    top: 0;
    right: 0;
}


/*/////////////////////////////////////////*/

#menu .menu-items .menu-item p {
    margin-bottom: 50px;
}


/*-------------------------reviews start----------------------------------------*/

#reviews .card {
    border-radius: 15px;
    transition: transform 0.3s;
}

#reviews .card:hover {
    transform: translateY(-5px);
}

#reviews .card {
    border-radius: 15px;
    transition: transform 0.3s;
}

#reviews .card:hover {
    transform: translateY(-5px);
}


/*---------------------------------------Contact-------------------------------------------*/

#contact {
    background: #f4f2ed;
    padding: 5rem 0;
}

#contact .container {
    max-width: 900px;
}

#contact .contact-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#contact .contact-info {
    width: 50%;
}

#contact .contact-info div {
    margin: 30px 0;
    line-height: 1.7;
}

#contact .contact-info h3 {
    font-size: 28px;
    color: #383848;
    margin-bottom: 10px;
}

#contact .contact-info p {
    color: #9a9a9a;
}

#contact .contact-info p i {
    color: #000000;
    margin-right: 5px;
}

#contact .contact-info a i {
    color: #fff;
    background: #000000;
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
}

form {
    width: 50%;
}

form input,
textarea {
    display: block;
    width: 100%;
    padding: 20px 15px;
    margin: 20px 0;
    border: none;
    background-color: #e3e2dd;
}

form input:focus,
textarea:focus {
    outline: none;
}

.button-send {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #000000;
    border-radius: 15px;
    color: #ffffff;
    background: #000000;
}


/*------------------------------------------Footer--------------------------------------------*/

#footer {
    background-color: #383848;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}


/*------------------------------------------media--------------------------------------------*/


/* Medium Screen + Tablet */

@media (max-width: 1000px) {
    #navbar img {
        margin-left: 20px;
    }
    nav ul {
        margin-right: 20px;
    }
    nav ul li a {
        padding: 10px;
    }
    header .content h1 {
        font-size: 28px;
    }
    #about {
        height: auto;
        padding: 4rem 2rem;
    }
    #about .about-content p {
        margin-right: 2rem;
    }
    #about img {
        width: 250px;
    }
    #offers .offers-items img {
        width: 150px;
    }
    #offers .offers-items h3 {
        font-size: 18px;
    }
    #menu .menu-items {
        display: block;
    }
    #contact .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    #navbar {
        flex-direction: column;
    }
    #navbar img {
        margin-bottom: 20px;
    }
    header .content h1 {
        font-size: 18px;
    }
    header .content p {
        font-size: 14px;
    }
    #about .about-content {
        flex-direction: column;
    }
    #about .about-content a {
        margin: 2rem 0;
    }
    #about img {
        display: none;
    }
    #offers {
        height: auto;
        padding: 30px 10px;
    }
    #offers .offers-items {
        flex-direction: column;
    }
    #menu .menu-items .menu-item {
        margin: 20px 10px;
    }
    #daytime .daytime-items {
        display: block;
        height: auto;
        padding: 30px 0;
    }
    #daytime .daytime-items .daytime-item {
        margin-top: 20px;
    }
    #contact .contact-info,
    form {
        width: 80%;
    }
}