:root {
    --black: #121212;
    --white: #d9d9d9;
    --yellow: #c7ae38;
    --grey: #1c1c1c;
}

* {
    border: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background-color: var(--white);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 10px;
}

a {
    text-decoration: none !important;
    color: var(--white) !important;
}

body {
    background-color: var(--black) !important;
    font-family: 'Playfair Display' !important;
    color: var(--white) !important;

}

/* Start Navbar*/
.navbar {
    background-color: var(--black);
    padding: 15px 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: sticky !important;
    top: 0;
    z-index: 3;
}

.navbar.scrolled {
    background-color: rgba(17, 17, 17, 0.9) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
    color: var(--white) !important;
}

.navbar-brand span {
    color: #c7ae38;
}
.dropdown-menu {
    position: absolute !important;
}
.nav-item {
    margin-left: 15px;
    font-size: 18px;
    color: var(--white) !important;
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 18px;
    margin-left: 15px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--yellow) !important;
}

.navbar-nav .nav-link:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
    animation: underline 0.3s ease;
}

@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.nav-item .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background-color: var(--black);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item .dropdown-menu .dropdown-item:hover {
    background-color: var(--grey);
    color: #c7ae38;
}


@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 30px;
    }

    .new-footer h5 {
        margin-bottom: 15px;
    }
}

/*End Navbar*/

/* start landing */
.landing {
    overflow: hidden;
    margin-bottom: 150px;
    margin-top: 50px;
}

.content-1 {
    text-align: center;
    align-items: center;
}



.content-1 h1 {
    font-size: 4.5em;
}

.btn {
    margin-top: 40px;
    transition: .3s;
}

.btn:hover {
    border-color: var(--yellow) !important;
}

.content-1 .image {
    position: relative;
}

.content-1 .image img:nth-of-type(1) {
    animation: rotatePan 2s ease-in-out forwards;
    rotate: 350deg;
    transition: .3s;
}

.content-1 .image img:nth-of-type(2) {
    position: absolute;
    max-width: 100%;
    height: 100%;
    top: 20px;
    left: 38px;
    object-fit: cover;
    z-index: -1;
    rotate: 170deg;
    transition: .3s;
    animation: moveSmoke 2s ease-in-out forwards;
}

@media (max-width:980px) {
    .landing {
        margin: 150px 0;
    }

    .content-1 {
        flex-wrap: wrap;
        text-align: center;
    }

    .image {
        visibility: hidden;
    }

    .content-1 h1 {
        font-size: 3.7em;
    }

    .content-1 img {
        display: none !important;
    }

}

@keyframes rotatePan {
    from {
        transform: rotate(-10deg);
    }

    to {
        transform: rotate(30deg);
    }
}

@keyframes moveSmoke {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-10px);
        opacity: 0.5;
    }

}

/* landing */

/* outdoor */
.space {
    background-image: url(resources/restaurants-terrace-with-black-green-awnings.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: -2;
}

.clouds {
    position: relative;
    overflow: hidden;
}

.cloud {
    position: absolute;
    width: 650px;
}

.cloud1 {
    top: 80px;
    left: 50%;
}

.cloud4 {
    top: -88px;
    left: 48%;
}

.cloud2 {
    top: -66px;
    left: 7%;
}


.cloud3 {
    top: 130px;
    left: 30%;
}

.cloud5 {
    bottom: -86px;
}

.animate {
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.cloud1.animate,
.cloud4.animate {
    animation-name: moveCloud-right;
}

.cloud2.animate,
.cloud3.animate,
.cloud5.animate {
    animation-name: moveCloud-left;
}

@keyframes moveCloud-left {
    0% {
        left: 50%;
        transform: translateX(-50%);
    }

    100% {
        left: -600px;
    }

}


@keyframes moveCloud-right {
    0% {
        left: 50%;
        transform: translateX(-50%);
    }

    100% {
        left: 100%;
    }

}

/* outdoor */

/* story */
.story {
    margin: 100px 0;
}

.story .story_content {
    margin: 0;
    padding: 0;
    align-items: center;
}

.story .story_image {
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: .4s;
    border-right: #c7ae38 5px solid;
}

.story .story_image img {
    width: 100%;
    transition: .3s;
}
.story .story_image img:hover {
    transform: scale(1.05);
}

.story .story_text h3 {
    font-family: 'Playfair Display' !important;
    margin: 0;
    color: var(--yellow);
}

.story .story_text p {
    line-height: 1.7;
    word-spacing: 3px;
    margin: 15px 0 50px;
    font-size: 18px;
}

.story .story_text {
    padding-left: 0;
   padding-right: 45px;
    font-family: Arial, Helvetica, sans-serif;
}

.story button {
    background: var(--black);
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 8px;
}

@media (max-width: 900px) {
    .story .story_content {
        padding-right: 0;
        text-align: center;
    }

    .story .story_image {
        border: none;
    }
}

@media (max-width:768px) {
    .story .story_content {
        flex-direction: column;
        text-align: center;
    }

    .story .story_text {
        margin-bottom: 45px;
        padding: 2px;
    }

    .story .story_text p {
        line-height: 1.6;
        word-spacing: 2px;
        font-size: 16px;
    }
}

.animated-border {
    display: inline-block;
    position: relative;
    font-size: 24px;
    color: white;
    text-decoration: none;
    padding-bottom: 5px;
}

.animated-border::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.5s ease-in-out;
}

.animated-border:hover::after {
    width: 0;
}

.animated-border:hover .in_button {
    color: var(--yellow) !important;
}

/*end story*/

/* about us */

.aboutUs {
    margin: 120px 0;

}

.aboutUs .details {
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 20px 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.aboutUs i {
    font-size: 35px;
    padding: 10px;
}

.aboutUs .col-md-4 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.aboutUs .col-md-4 p {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--yellow);
    font-size: 15px;

}

.aboutUs .col-md-4 p,
.aboutUs .col-md-4 h3 {
    margin: 0;
}

.aboutUs .details:hover {
    text-shadow: 0 0 25px var(--yellow);
    border-color: var(--yellow);
}
.aboutUs .details:hover i {

  color: var(--yellow);
}


@media (max-width:768px) {
    .aboutUs .details {
        flex-direction: column;
        margin: auto;
        text-align: center;
    }

    .aboutUs .col-md-4 {
        margin-bottom: 10px;
    }

    .location i,
    .reservation i {
        right: 36px;
        position: relative;

    }
}

/*end about us*/

/* start menu */

.menu-container {
    margin: 2%;
    background-color: var(--grey);
    border-radius: 20px;
    /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); */
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.menu-title {
    border: #c7ae38 solid 1px;
    border-left: none;
    border-right: none;
    background-color: var(--grey);
    font-size: 40px;
    padding: 2px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 100px;
    text-align: center;
}

.menu-title span {
    color: var(--yellow);
}

.menu-subtitle {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 40px;
}

.menu-content {
    border-left: #c7ae38 solid 5px;
    border-radius: 10px;
    padding: 2%;
    padding-bottom: 30px;
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.center {
    border-right: #c7ae38 solid 5px;
    border-left: none !important;
}

.menu-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--yellow);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -ms-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
}

.menu-image img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.menu-text {
    max-width: 600px;
    text-align: center;
}

.menu-text p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.type {
    font-weight: bold;
    color: var(--yellow);
}

@media (max-width: 768px) {
    .menu-content {
        flex-direction: column;
    }

    .menu-text {
        text-align: center;
    }
}

/* end menu */

/*Start Footer*/

.new-footer {
    background-color: var(--grey);
    color: var(--white);
    padding: 60px 0 20px;
    font-family: 'Arial', sans-serif;
}

.new-footer h5 {
    color: var(--yellow);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column .social-icons i {
    color: #c7af38b9;
    border: #1c1c1c solid;
    border-radius: 50%;
    padding: 10px;
}

.footer-column .social-icons i:hover {
    color: #c7ae38;
    background-color: #1c1c1c;
}



.footer-content p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white);
}

.footer-content p i {
    margin-right: 8px;
    color: var(--yellow);
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: var(--white);
    margin-bottom: 12px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/*End Footer*/