/* Start Global Rules */

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root {
    --main-yellow-color: #ffcf49;
    --main-blue-color: #1f2a3e;
    --main-transition: 0.5s;
    --p-color: #ccc;
    --padding-top: 50px;
    --padding-bottom: 50px;
}

/* End Variables */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Start Contanier */

.contanier {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contanier {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .contanier {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .contanier {
        width: 1170px;
    }
}

/* End Contanier */

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    width: 50px;
    height: 50px;
}

.main-title {
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    width: fit-content;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: var(--main-transition);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 23px;
    }
}

@media (max-width: 768px){
    .main-title{
        font-size: 20px;
    }
}

.main-title a {
    color: black;
}

.main-title:hover {
    color: white;
    border: 2px solid white;
    transition-delay: 0.5s;
}

.main-title:hover a {
    color: white;
    transition-delay: 0.5s;
}

.main-title::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title:hover::before {
    z-index: -1;
    animation-name: left-move;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.main-title:hover::after {
    z-index: -1;
    animation-name: right-move;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

/* Start Mage Menu */

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    /* position: fixed; */
    top: 10px;
    left: 10px;
    z-index: 2;
}



.close-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.close-icon {
    display: none;
}

.menu-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.menu-items ul {
    list-style: none;
    padding: 0;
    margin: 20% 0 0 0;
    text-align: center;
}

.menu-items ul li {
    margin-bottom: 20px;
}

.menu-items ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.menu-items ul li a:hover {
    color: #00bcd4;
}

.close-icon {
    color: white;
}

/* End Mage Menu */

/* End Global Rules */

/*********************************************************************************************/
/* start des  */
/* start header */

.top {
    position: relative;
    padding-bottom: var(--padding-bottom);
}

.top .contanier {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top .special-heading {
    color: #d3d7dd;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    z-index: -1;
    position: relative;
}

@media (max-width: 768px) {
    .top .special-heading{
        font-size: 50px;
    }
}

.top .special-heading+p {
    color: var(--main-blue-color);
    letter-spacing: 4px;
    font-size: 40px;
    font-weight: 600;
    z-index: 5;
    bottom: 80px;
    position: absolute;
}

@media (max-width: 768px) {
    .top .special-heading+p {
        font-size: 25px;
        bottom: 50px;
    }
}

/* end header */
/* start elements */
.gallery {
    position: relative;
    padding-bottom: var(--padding-bottom);
    min-height: 100vh;
}

@media (max-width: 767px) {
    .gallery{
        min-height: 0;
    }
}

.elements {
    position: relative;
    width: 80%;
    padding-bottom: var(--padding-bottom);
}

@media (max-width: 767px) {
    .elements{
        padding-bottom: 0;
    }
}

.elements .box-yellow {
    width: 70%;
    height: 130px;
    background-color: var(--main-yellow-color);
    text-align: center;
    margin: auto 25%;
}

@media (max-width:767px) {
    .elements .box-yellow{
        display: none;
    }
}

.elements .box-blue {
    width: 80%;
    height: 130px;
    background-color: var(--main-blue-color);
    z-index: -500;
    margin: -200px 20%;
    position: relative;
}

@media (max-width:767px) {
    .elements .box-blue{
        display: none;
    }
}

.elements .box-yellow .element {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 60px;
}

.elements .box-yellow .element .icon {
    font-size: 600px;
    font-weight: 500;
}

.elements .element li a {
    text-align: center;

    top: -10px;
    transform: translate(-50%, 10px);
    position: relative;
    z-index: 100;
}

.elements .element li a span:first-child {
    font-weight: 600;
    font-size: 25px;
    color: white;
    margin-right: 10px;
}

.elements .element li a span:nth-child(2) {
    font-size: 25px;
    color: var(--main-blue-color);
}

@media (max-width: 767px) {
    .elements .box-yellow .element .icon {
        font-size: 30px;
    }

    .elements .element li a {
        text-align: center;
        top: -10px;
    }

    .elements .element li a span:first-child {
        font-size: 20px;
    }
}

/* end elements */

/* start image design */
.poth-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: var(--padding-bottom);
}

@media (max-width:767px) {
    .poth-section{
        padding-top: 0;
    }
}

.poth-section .contanier {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-section {
    flex: 1;
    margin-right: 5px;
}

.left-section img {
    width: 100%;
    height: 400px;
}

.right-section {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-section img {
    width: 50%;
    height: 250px;
}

.bottom-review {
    background-color: white;
    width: 100%;
    height: 80px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin-top: -5px;
}

@media (max-width: 767px) {
    .bottom-review{
        width: 350px !important;
    }
}

.review {
    display: flex;
    gap: 20px;
    align-items: center;
}

.review a {
    color: #1f2a3e;
    cursor: pointer;
}

.review span {
    font-size: 20px;
    font-weight: 500;
}

.review button {
    background-color: var(--main-blue-color);
    color: white;
    border-color: white;
    padding: 5px 20px;
}

.review i {
    font-size: 25px;
}

.stars i {
    font-size: 35px;
}

.stars span {
    font-size: 25px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .poth-section .contanier {
        flex-direction: column;
    }

    .right-section {
        margin: 20px 50px;
        display: none;
    }

    .right-section img {
        height: 180px;
    }

    .left-section {
        margin: 5px 50px;
    }
}

/* end Image design */
/* end gallery */
/* ######################################################## */

/* start review-reserve */

.review-reserved {
    position: relative;
    padding-bottom: var(--padding-botto);
}

.review-reserved .contanier {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.review-section {
    padding: 10px 20px;
}

@media (max-width: 767px) {
    .review-section{
        width: 350px;
    }
}

.review-form {
    display: none;
}

.review-form.active {
    display: block;
}

.review-form textarea {
    width: 60%;
    height: 90px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background-color: #eee;
}

#review-input:focus {
    outline: none;
}

.review-form #submit {
    border: none;
    padding: 5px 10px;
    color: #fff;
    background-color: var(--main-blue-color);
    font-weight: 500;
    position: relative;
    bottom: 20px;
    cursor: pointer;
    transition: 0.3;
}

.review-form #submit:hover {
    color: var(--main-blue-color);
    background-color: #fff;
    border: 2px solid var(--main-blue-color);
}

.review-section span,
.review-section i {
    font-size: 20px;
    font-weight: 500;
}

.all-boxes {
    position: relative;
    background-color: white;
    border: 1px solid #eee;
    overflow-y: scroll;
    max-height: 520px;
    margin-top: 10px;
    padding: 10px 20px;
}

.review-section .review-box {
    padding-top: 20px;
}

.review-box .review-info {
    display: flex;
    align-items: center;
}

.review-box {
    background: white;
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    padding: 10px 15px;
    margin: 20px;
    width: fit-content;
}

.review-box .review-info .Image {
    padding-right: 15px;
}

.review-box .review-info .Image img {
    border-radius: 50%;
}

.review-section .review-box {
    border-bottom: 3px solid var(--main-blue-color);
}

.review-section .review-box p {
    line-height: 1.5;
}

#additional-info {
    color: #4b4b4b;
    line-height: 1.5;
    font-weight: 700;
    font-size: 18px;
    background: white;
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    padding: 10px 50px;
    display: none;
}

.reserve-box {
    border: 1px solid rgb(77, 77, 77);
    box-shadow: 5px 10px 25px 0px rgb(0 0 0 / 15%);
    border-radius: 5%;
    width: 350px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-left: 100px;
    margin-top: 40px;
    position: relative;
    height: auto;
    padding-bottom: 20px;
}

@media (max-width: 767px) {
    .reserve-box{
        margin-left: 0;
        margin-bottom: 20px;
        margin-top: 20px;
        height: auto;
        padding-bottom: 20px;
    }
}

.reserve-box .reserve-info .date {
    position: relative;
    display: flex;
}

@media (max-width: 767px) {
    .reserve-box{
        width: 85%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .reserve-box .reserve-info .date{
        flex-direction: column;
    }
}

.reserve-box .reserve-info .date::before {
    content: "";
    position: absolute;
    background-color: #5d5c5c;
    width: 100%;
    height: 1px;
    top: 52px;
    left: 0px;
}

@media (max-width: 767px) {
    .reserve-box::before{
        display: none;
    }
}

.reserve-box .reserve-info button {
    background-color: white;
    border: none;
    border-radius: 10px;
    height: 52px;
    width: 100%;
    cursor: pointer;
    margin-top: 0;
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reserve-box .reserve-info button:hover {
    border: 1px solid black;
}

.reserve-box .reserve-info button span {
    margin-right: 30px;
    font-size: 16px;
    font-weight: 700;
}

.final-guests {
    font-size: 12px;
    text-align: center;
}

.reserve-box .btnReserve {
    width: 50%;
    color: white;
    background-color: var(--main-blue-color);
    padding: 15px 20px;
    margin: 10px;
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 50px;
}

.reserve-box .payment {
    width: 50%;
    color: white;
    background-color: var(--main-yellow-color);
    padding: 10px 20px;
    text-align: center;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    box-shadow: 5px 10px 25px 0px rgb(0 0 0 / 15%);

}

.fixed {
    position: fixed;
    top: 130px;
    left: 675px;
    background: white;
    z-index: 90;
    margin-left: 100px;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .fixed {
        left: 50px;
    }
}

.reserve-box .btn:hover {
    background-color: #8a8a8a;
}

.reserve-box p {
    color: #4b4b4b;
}

.reserve-box .total {
    margin-top: 70px;
    position: relative;
}

#guestsDropdown button {
    height: 20px;
    border: 1px solid #ffd43b;
    width: 100%;
    z-index: 1000 !important;
    background-color: white;
    position: relative;
    border-radius: 0;
    padding: 13px;
}

.reserve-box::before {
    content: "";
    position: absolute;
    background-color: #5d5c5c;
    width: 350px;
    height: 1px;

    top: 340px;
    left: -1px;
}



.reserve-box .total div {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #5d5c5c;
}

.photo {
    position: relative;
    padding-top: var(--padding-top);
}
@media (max-width:767px) {
    .photo{
        display: none;
    }
}

.photo .image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.photo .image img {
    width: 50%;
    height: 450px;
    border-left: 4px solid var(--main-blue-color);
}

iframe {
    width: 100%;
}

.map {
    border-right: 4px solid var(--main-blue-color);
    width: 50%;
    position: relative;
    height: 450px;
}

/* end review-reserve */

/* end des */

.centered-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

form#submit-review {
    background-color: #1f2a3eb0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

textarea {
    overflow: auto;
    width: 350px;
    height: 250px;
    padding: 5px;
    border: 2px solid var(--main-blue-color);
    margin-bottom: 25px;
    background-color: var(--p-color);
    color: var(--main-blue-color);
    max-width: 800px;
    max-height: 800px;
}

button.show-review-form {
    color: var(--main-blue-color);
    padding: 5px 20px;
    border: 0;
    background-color: white;
    cursor: pointer;
}