
:root {
    --header-color: #231f20;
    --on-header-color: #ffffff;
    --footer-color: #231f20;
    --on-footer-color: #ffffff;
    --section-color: #e26704;
    --on-section-color: #fff;
    --button-color: #ffc107;
    --on-button-color: #000000;
    --theme-color: #ffc107;
    --on-theme-color: #000000;
    --highlight-color: #F2185E;
    --on-highlight-color: #ffffff;
    --black: #000000;
    --white: #ffffff;

    --menu-bg: url('../images/splash.png');
}

/* 
==============================================================================
header section start
==============================================================================
*/
#page-header {
    background: transparent;
    transition: all .3s ease;
    z-index: 20
}

#page-header.scrolled {
    background: rgba(0, 0, 0, .9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

#page-header a {
    color: var(--on-header-color);
    margin-right: 25px;
    display: inline-block;
}

#page-header a:hover {
    color: var(--theme-color)
}

#custom-nav-button div {
    width: 28px;
    height: 3px;
    background: var(--theme-color);
    margin: 5px 0;
    transition: .3s
}

#menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 1999;
}

#menu-overlay.active {
    opacity: 1;
    visibility: visible
}


#custom-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 560px;
    max-width: 92vw;
    transform: translateX(100%);
    transition: transform .4s ease;
    z-index: 2000;
    color: #fff;
    overflow: hidden;
}

#custom-menu-wrapper.active {
    transform: translateX(0)
}

#custom-menu-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        var(--menu-bg);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
}

#custom-menu-wrapper .menu-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 18px 150px;
}

.menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.menu-logo {
    height: 48px
}

#close-menu {
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1
}

.menu-middle {
    flex: 1;
    margin-top: 28px;
    overflow: auto;
    padding-right: 6px
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0
}

.menu li {
    margin: 12px 0
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 10px 0;
    display: inline-block;
}

.menu a:hover {
    color: var(--theme-color)
}

.socials {
    margin-top: 22px
}

.socials a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 14px
}

.socials a:hover {
    color: var(--theme-color)
}

.menu-footer {
    margin-top: auto
}

.menu-footer a {
    background-color: var(--highlight-color);
    color: var(--on-highlight-color);
    text-transform: uppercase;
    border-radius: initial;
    margin-right: 15px;
}

body.menu-open {
    overflow: hidden
}

.header-logo {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    grid-gap: 15px;
}

.header-logo .socials a i {
    color: var(--theme-color);
}

/* 
==============================================================================
header section end
==============================================================================
*/
/* 
==============================================================================
hero section start
==============================================================================
*/
#hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
}

/* Background Video */
#hero-section video.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
#hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%);
    z-index: 1;
}

/* Content */
#hero-section .content {
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-btn {
    margin: 10px 3px;
    border: 3px solid var(--theme-color);
    color: var(--theme-color);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    border-radius: initial;
    padding: 10px;
}

.hero-btn:hover {
    background-color: var(--theme-color);
    color: var(--on-theme-color);
    border-color: var(--theme-color);
}

/* Right side video */
.side-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
}

/* 
==============================================================================
hero section end
==============================================================================
*/
/* 
==============================================================================
3rd section start
==============================================================================
*/
.l-section {
    padding: 50px 0;
    background-color: #000;
}

.height_medium {
    min-height: 600px;
    display: flex;
    align-items: center;
}

.image-grid-1 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    aspect-ratio: 0.92;
}

.image-grid-1 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-grid-1 .div1 {
    grid-area: 1 / 1 / 11 / 7;
}

.image-grid-1 .div2 {
    grid-area: 2 / 2 / 10 / 9;
}

.green-squares-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.green-squares-block {
    display: flex !important;
    flex-direction: row;
    gap: 3px;
    position: relative;
    top: 15px;
    margin-right: 15px;
}

.quote-wrapper {
    margin-left: 45%;
}

p.lead {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 5%;
    text-transform: uppercase;
}

.green-squares-block div:first-child {
    width: 35px;
}

.green-squares-block div {
    height: 60px;
    width: 5px;
    background-color: var(--theme-color);
}

.content-inner {
    color: white;
    font-size: 0.85rem;
}

.us-btn-style_2 {
    font-size: 1rem;
    letter-spacing: 1.5px;
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: var(--button-color);
    border: 2px solid var(--button-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.us-btn-style_2:hover {
    background-color: var(--button-color);
    color: var(--on-button-color);
}


/* 
==============================================================================
3rd section end
==============================================================================
*/
/* Background Overlay */
.best-food-items-section {
    padding: 50px 0;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.best-food-wrapper .shape1,
.best-food-wrapper .shape2 {
    position: absolute;
    z-index: 1;
}

.best-food-wrapper .shape1 {
    top: 10%;
    left: 5%;
    animation: floatY 6s ease-in-out infinite;
}

.best-food-wrapper .shape2 {
    bottom: 10%;
    right: 5%;
    animation: floatX 6s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

.title-area {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.title-area .sub-title {
    font-weight: bold;
    color: white;
}

.title-area h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.single-food-items {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.single-food-items:hover {
    transform: translateY(-10px);
}

.single-food-items .item-thumb {
    position: relative;
    margin-bottom: 20px;
}

.single-food-items .item-thumb img {
    max-width: 100%;
}

.single-food-items .circle-shape {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
}

.single-food-items h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.single-food-items .text {
    font-size: 14px;
    color: #777;
}

.single-food-items h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #c94f4f;
}

.swiper-pagination-bullet {
    background: #c94f4f !important;
}


.best-food-items-section {
    position: relative;
    padding: 50px 0;
}

.single-food-items {
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.single-food-items:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.single-food-items .item-thumb {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.single-food-items .item-thumb img {
    max-width: 200px;
    position: relative;
    border-radius: 50%;
    z-index: 2;
}

.single-food-items .circle-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: rotateCircle 12s linear infinite;
}

.single-food-items .circle-shape img {
    width: 100%;
    height: auto;
}

/* Circle Animation */
@keyframes rotateCircle {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 
==============================================================================
footer section start
==============================================================================
*/

footer {
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #000;
    color: #000;
}

#footer-top-section h2 {
    color: #000;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 70px;
    margin-bottom: 20px;
}

#footer-top-section p {
    color: #000;
    font-size: 0.85rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
}

/* Menu links */
#footer-middle-center-wrapper .menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    columns: 2;
    column-gap: 20px;
}

#footer-middle-center-wrapper .menu li {
    margin-bottom: 10px;
    break-inside: avoid;
}

#footer-middle-center-wrapper .menu a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

#footer-middle-center-wrapper .menu a:hover {
    color: var(--highlight-color);
}

/* Booking buttons */
.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.us-btn-style_5 {
    display: block;
    padding: 14px 25px;
    background-color: transparent;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.us-btn-style_5:hover {
    background-color: #000;
    color: #fff;
    background-color: #000;
    text-decoration: none;
}

/* Bottom links */
#footer-bottom-section {
    border-top: 1px solid #000;
}

#footer-bottom-section a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

/* 
==============================================================================
footer section end
==============================================================================
*/

section.gallery {
    padding: 50px 0;
    background: #000;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.gallery-wrapper img {
    margin: 0 auto;
}

/* terms and condition page  */
.term-condition-wrapper {
    background-color: var(--black);
    color: #f1f1f1;
    line-height: 2.5rem;
    padding-top: 100px;
    letter-spacing: 1px;
    font-family: sans-serif;
}

.term-condition-wrapper a {
    color: var(--white);
    font-weight: 300;
    font-style: italic;
    font-family: sans-serif;
}
.terms-condition-wrapper h2{
    margin-top: 15px;
}

/* privacy policy page  */
.privacy-policy-wrapper {
    background-color: var(--black);
    color: #f1f1f1;
    line-height: 2.5rem;
    padding-top: 100px;
    letter-spacing: 1px;
    font-family: sans-serif;
}

.privacy-policy-wrapper a {
    color: var(--white);
    font-weight: 300;
    font-style: italic;
    font-family: sans-serif;
}
.privacy-policy-wrapper h2{
    margin-top: 15px;
}