@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@30 0;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Smoothly animate the scroll position*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: auto;
}

header {
    height: 100vh;
    background: url("home_bg.jpeg") center center/cover no-repeat;
    position: relative;
}

header::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0, 0.6);
}

header * {
    z-index: 10;
}

#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 #e4b95b;
}

header .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75%;
    /* Add exmple of greeen background */
}

header .content h1 {
    font-size: 40px;
    color: #fff;
}

header .content p {
    color: #fff;
    margin: 20px 0 40px;
}

/* Header End */
/* Utility Classes */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.btn-primary {
    border: 1px solid #fff;
}

.btn-primary:hover {
    background: #e4b95b;
}

.primary-text {
    color: #e4b95b;
}

/* About Start */
#about {
    /*  height: 80vh; */
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}

#about .title {
    text-align: center;
    margin-bottom: 4rem;
}

#about h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #383848;
}

#about .title p {
    font-weight: 600;
    font-size: 14px;
    color: #9a9a9a;
}

#about .about-content {
    display: flex;
    justify-content: space-between;
}

#about .about-content p {
    margin-right: 7rem;
    line-height: 1.6;
    color: #9a9a9a;
    font-weight: 500;
}

#about img {
    max-width: 450px;
}

#about .about-content a {
    margin-top: 2rem;
}

/* About End */
.btn-secondary,
.btn-third:hover {
    background: #383848;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-third {
    background: #e4b95b;
}

#offers {
    /*  height: 80vh; */
    padding: 5rem 0;
    background: url("offer-background.jpg") center center/cover fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about .title,
#offers .title {
    text-align: center;
    margin-bottom: 4rem;
}

#about h2,
#offers h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#offers h2 {
    color: #e4b95b;
}

#offers .title p {
    color: #fff;
    font-weight: 500;
}

#offers .offers-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

#offers .offers-items img {
    width: 200px;
}

#offers .offers-items h3 {
    font-size: 25px;
    color: #fff;
    margin: 15px 0;
}

#offers .offers-items p {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
    font-weight: 300;
    margin-bottom: 15px;
}

#offers .offers-items span {
    font-weight: 600;
    font-size: 18px;
    margin-left: 5px;
}

/* Offers Section end */
#menu {
    background: #f4f2ed;
    padding: 5rem 0;
}

#about .title,
#offers .title,
#menu .title {
    text-align: center;
    margin-bottom: 4rem;
}

#about h2,
#offers h2,
#menu h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#menu .title h2 {
    color: #383848;
}

#menu .title p {
    color: #9a9a9a;
    font-weight: 500;
}

#menu .menu-items {
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu .menu-items .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
}

#menu .menu-items .menu-item img {
    width: 80px;
    margin-right: 20px;
    border-radius: 50%;
}

#menu .menu-items .menu-item h3 {
    color: #383848;
    border-bottom: 1px dashed #c2bdbd;
    padding-bottom: 10px;
    position: relative;
}

#menu .menu-items .menu-item span {
    position: absolute;
    right: 0px;
    top: 0;
}

#menu .menu-items .menu-item p {
    margin-top: 10px;
}

#menu .btn {
    display: block;
    margin: auto;
    border: none;
    margin-top: 30px;
}

.btn-secondary,
.btn-third:hover {
    background: #383848;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-third {
    background: #e4b95b;
}

/* Menu Section End */
/* Daytime section Start */
#daytime {
    background: url("daytime_bg.jpeg") center center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
}

#daytime .daytime-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 40vh;
}

#daytime .daytime-items h3 {
    font-size: 32px;
    margin: 20px 0 10px;
}

#daytime .daytime-items p {
    font-weight: 500;
}

/* Daytime section End */
#gallery {
    background: url("offer-background.jpg") center center/cover;
    padding: 8rem 0 6rem;
}

#gallery h2 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

#gallery .img-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#gallery .img-gallery img {
    margin: 20px;
    width: 280px;
    height: 200px;
    border-radius: 15px;
    opacity: 0.8;
}

#gallery .img-gallery img:hover {
    opacity: 1;
}

/* Gallery section end */
/* Contact Section start */
#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%;
}

form {
    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: #e4b95b;
    margin-right: 5px;
}

#contact .contact-info a i {
    color: #fff;
    background: #383848;
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
}

#contact .contact-info a i:hover {
    background-color: #e4b95b;
    color: #383848;
}

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;
}

form button {
    color: #fff;
}

/* Contact Section End */
/* Footer Start */
#footer {
    background-color: #383848;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}

/* Footer End */
@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;
        }
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    #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%;
    }
}
/* slider css */
#offers {
    background: url("./offer-background.jpg") center center/cover fixed;
    padding: 5rem 0;
    position: relative;
    text-align: center;
}

#offers .offers-items-wrapper {
    overflow: hidden;
    width: 100%;
}

#offers .offers-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

#offers .offer-item {
    min-width: 100%;
    text-align: center;
}

#offers .offers-items img {
    width: 200px;
}

#offers .prev,
#offers .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

#offers .prev {
    left: 10px;
}

#offers .next {
    right: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin: 0 auto;
}

#menu {
    background: #f4f2ed;
    padding: 5rem 0;
}

#menu .title {
    text-align: center;
    margin-bottom: 20px;
}

#menu .title h2 {
    color: #383848;
    font-size: 40px;
    margin-bottom: 20px;
}

#menu .title p {
    color: #9a9a9a;
    font-weight: bold;
}

.menu-items {
    display: flex;
    justify-content: center;
    align-items: start;
}

.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
}

.menu-item img {
    width: 80px;
    margin-right: 20px;
    border-radius: 50%;
}

.menu-item h3 {
    color: #383848;
    border-bottom: dashed 1px #c2bdbd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    position: relative;
}

.menu-item h3 span {
    position: absolute;
    right: 0;
    top: 0;
}

.btn-third {
    display: block;
    margin: auto;
    border: none;
    margin-top: 30px;
}

.btn-third a {
    color: #f4f2ed;
    background-color: #383848;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Page */
body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

/* Gallery Section */
#gallery {
    background: url('./offer-background.jpg') center/cover no-repeat;
    padding: 3rem 0;
    text-align: center;
}

#gallery h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.img-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.img-gallery img {
    width: 900px;
    height: 200px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s ease;
}

.img-gallery img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Lightbox */
#boxContainer {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
}

#boxItem {
    width: 70%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    min-height: 100vh;
}

/* Buttons */
#boxItem i {
    color: #fff;
    cursor: pointer;
    position: absolute;
    transition: color 0.3s;
}

#boxItem i:hover {
    color: #e4b95b;
}

#close {
    top: 15px;
    right: 20px;
}

#prev {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

#next {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin: auto;
}

#contact {
    background: #f4f2ed;
    padding: 5rem 0;
}

#contact .container {
    max-width: 900px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    width: 40%;
}

form {
    width: 50%;
}

.contact-info div {
    margin: 20px 0;
    line-height: 1.7;
}

.contact-info h3 {
    font-size: 24px;
    color: #383848;
    margin-bottom: 10px;
}

.contact-info p {
    color: #9a9a9a;
}

.contact-info p i {
    color: #e4b95b;
    margin-right: 5px;
}

.contact-info a i {
    background: #383848;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.3s;
}

.contact-info a i:hover {
    background: #e4b95b;
    color: #383848;
}


form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background: #e3e2dd;
    border: none;
    font-size: 14px;
}

form input:focus,
form textarea:focus {
    background: #dcdad2;
    outline: none;
}

form button {
    padding: 15px 30px;
    border: none;
    background: #383848;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #e4b95b;
    color: #383848;
}


.error-message {
    color: red;
    font-size: 13px;
}


@media (max-width: 768px) {

    .contact-info,
    form {
        float: none;
        width: 100%;
    }
}