/*
*******************************************
*******************************************

** - Default CSS
** - NavBar Area CSS
** - Slide Menu Area CSS
** - Section Title Area CSS
** - Main Content Area CSS
** - Footer CSS
** - Home Header Area CSS
** - About header Area CSS
** - Contact header Area CSS
** - Get In Cards Area CSS
** - Contact Form Area CSS
** - Reservation Area CSS
** - Eat Socially Area CSS

*******************************************
*******************************************
*/


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

/* Default Button */

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #000;
    background-color: #f5b312;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 4px;
    padding: 7px 30px 7px 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding-top: 10px;
}

.default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #221638;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.default-btn:hover span {
    width: 225%;
    height: 562.5px;
}

/*================================================
NavBar Area CSS
=================================================*/

nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 999;
    background-color: #131111;
    color: #fff;
    text-align: center;
    border: 2px solid #8f8e8e;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-gold);
}

.navbar-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-top-left-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid #f5b312;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.navbar-top-left-side {
    position: absolute;
    top: 0;
}

.navbar-top-right-side {
    position: absolute;
    top: 12px;
    right: 15px;
}

.navbar-top-left-side h3 {
    font-size: 35px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 2px #000;
}

.navbar-top-left-side+div p {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    text-align: left;
    padding-left: 110px;
    position: absolute;
    bottom: 10px;
}

.nav-center {
    text-align: center;
}

.arabic-text {
    display: inline-block;
    padding: 5px 10px;
    color: #f5b312;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1rem;
    border: 2px solid #f5b312;
    text-align: center;
    box-sizing: border-box;
}

.brand-name {
    font-size: 80px;
    color: #f5b312;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: "Bree Serif", serif;
    text-shadow: 2px 2px 2px #000;
    margin-top: -10px;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    right: 20px;
}

.menu-icon {
    font-size: 28px;
    color: #f5b312;
    cursor: pointer;
}

@media screen and (max-width: 1050px) {

    .navbar-top-left-side h3,
    .navbar-left-para {
        display: none;
    }

    .navbar-top-left-side img {
        margin-top: 10px;
    }
}

@media screen and (max-width: 590px) {

    .nav-img {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 50px;
    }

    .arabic-text {
        padding: 5px 10px;
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 360px) {
    .brand-name {
        font-size: 40px;
        padding-top: 10px;
    }

    .nav-img {
        width: 35px;
        height: 35px;
    }

    .arabic-text {
        padding: 0;
        border: none;
    }
}

/*================================================
Slide Menu Area CSS
=================================================*/

.side-menu {
    position: fixed;
    top: 17.7%;
    right: -100%;
    width: auto;
    height: 60px;
    background-color: #131111;
    border-left: 2px solid #f5b312;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    transition: right 0.6s ease-in-out;
    z-index: 9999;
}

.side-menu.active {
    right: 0;
}

/*
.side-menu a {
    color: #f5b312;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
} */

.side-menu a {
    color: #f5b312;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    display: inline-block;
}

.side-menu a:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #f5b312, #fff08c, #f5b312);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -4px;
    transition: width 0.4s ease-in-out;
    border-radius: 50px;
    box-shadow: 0 0 5px #ffa41b88;
}

.side-menu a:hover:after {
    width: 100%;
}

.close-btn {
    display: none !important;
}

@media screen and (max-width: 752px) {
    .side-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: #131111;
        border-left: 2px solid #f5b312;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }

    .side-menu.active {
        right: 0;
    }

    .side-menu a {
        color: #f5b312;
        text-decoration: none;
        font-size: 20px;
        margin: 12px 0;
        border-radius: 8px;
        transition: 0.3s;
        width: 80%;
        text-align: center;
    }

    .close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 22px;
        color: #f5b312;
        cursor: pointer;
    }
}

/*================================================
Section Title Area CSS
=================================================*/

.section-header {
    position: relative;
    text-align: center;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title {
    font-size: 2rem;
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    animation: fadeInDown 1s ease forwards;
}

.decor-left {
    width: 50px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInDecor 1s ease forwards;
}

.decor-left {
    animation-delay: 0.3s;
}

.bottom-underline {
    width: 150px;
    margin-top: -38px;
    margin-left: 60px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDecor {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@media screen and (max-width: 576px) {
    .bottom-underline {
        margin-top: -25px;
        margin-left: 0;
    }
}

/*================================================
Main Content Area CSS
=================================================*/

.main-content {
    background-image: url(../img/comman/main-content.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

/* 
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.6);

    backdrop-filter: blur(5px);
    background-color: rgba(36, 35, 35, 0.6);
*/

/*================================================
Testimonial Area CSS
=================================================*/

.people-testimonial {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
}

.people-testimonial h1 {
    display: grid;
    place-items: center;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.people-testimonial p {
    display: grid;
    place-items: center;
    text-align: justify;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: 10px;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1100px;
    width: 100%;
}

.arrow-btn {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    gap: 20px;
}

.arrow-btn i {
    text-align: center;
    cursor: pointer;
    font-size: 1.50rem;
    font-weight: 900;
    transform: translateY(-50%);
    text-shadow: 1px 1px 2px #000;
}

.arrow-btn #left {
    color: #f5b312;
}

.arrow-btn #right {
    color: #fff;
}

.testimonial-card h6 {
    color: #fff;
}

.testimonial-wrapper .testimonial-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel :where(.testimonial-card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial-carousel.no-transition {
    scroll-behavior: auto;
}

.testimonial-carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.testimonial-carousel.dragging .testimonial-card {
    cursor: grab;
    user-select: none;
}

.testimonial-carousel .testimonial-card {
    scroll-snap-align: start;
    height: auto;
    list-style: none;
    background: transparent;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid #f5b312;
}

.people-review-box {
    display: grid;
    place-items: center;
    height: 180px;
    background-color: transparent;
    padding: 20px;
    overflow: scroll;
}

.testimonial-card .img {
    background: #f5b312;
    width: 105px;
    height: 105px;
    border-radius: 50%;
}

.testimonial-card .img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}

.reviewer-details-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.reviewer-details-box h5 {
    color: #f5b312;
    font-family: "Pacifico", cursive;
}

.review-stars i {
    color: #f5b312;
    padding-bottom: 15px;
    text-shadow: 0.5px 0.5px 1px #000;
}

@media screen and (max-width: 900px) {
    .testimonial-wrapper .testimonial-carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .testimonial-wrapper .testimonial-carousel {
        grid-auto-columns: 100%;
    }

    .testimonial-carousel .testimonial-card {
        width: 100%;
        flex: none;
    }

    .people-testimonial h1 {
        font-size: 25px;
    }
}

/*================================================
Footer Area CSS
=================================================*/

.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/comman/footer.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0 2rem;
    border-top: 3px solid var(--primary-gold);
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1.1rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-link {
    color: var(--secondary-gold);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--primary-gold);
    border-radius: 25px 0 0 25px;
    background-color: var(--dark-black);
    color: var(--secondary-gold);
    border-right: none;
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-gold);
    color: var(--dark-black);
    border: 2px solid var(--primary-gold);
    border-radius: 0 25px 25px 0;
    border-left: none;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ==== Social Icon ==== */

.share-certificate {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.share-certificate a {
    text-decoration: none;
}

.share-certificate a i {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.share-certificate #facebook {
    font-size: 20px;
    padding: 10px 15px;
    color: #fff;
    background-color: blue;
    border-radius: 50%;
}

.share-certificate #instagram {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
    border-radius: 50%;
}

.share-certificate #gmail {
    font-size: 20px;
    padding: 10px 13px;
    color: red;
    background-color: wheat;
    border-radius: 50%;
}

.share-certificate #whatsapp {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background-color: green;
    border-radius: 50%;
}

.share-certificate #youtube {
    font-size: 20px;
    padding: 10px 11px;
    color: red;
    background-color: white;
    border-radius: 50%;
}

/* ==== Footer Bottom ==== */

.footer-bottom {
    text-align: center;
    color: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--primary-gold);
}

.back-to-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
    border: 1px solid #f5b312;
    background-color: transparent;
    color: #f5b312;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #555;
}

.footer-body {
    background-color: transparent;
}

/*================================================
Home Header Area CSS
=================================================*/

.slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 33.33%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.slide h1 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #f5b312;
    text-shadow: 2px 2px 4px black;
}

.slide p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-menu {
    background-color: transparent;
    color: #f5b312;
    border: 2px solid #f5b312;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.3s ease;
}

.btn-menu:hover {
    background-color: #f5b312;
    color: black;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    transition: 0.3s;
}

.arrow:hover {
    color: #f5b312;
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

.slide-1 {
    background-image: url(../img/home/home-header1.jpg);
}

.slide-2 {
    background-image: url(../img/home/home-header2.jpg);
}

.slide-3 {
    background-image: url(../img/home/home-header3.jpg);
}

.slide-1 .slide-content,
.slide-3 .slide-content {
    text-align: left;
    margin-left: 8%;
}

.slide-2 {
    justify-content: flex-end;
}

.slide-2 .slide-content {
    text-align: right;
    margin-right: 8%;
}

/* ==== Chain Hanging Effect ==== */

.chain {
    position: absolute;
    top: 0;
    width: 300px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    transform-origin: top center;
    animation: swing 3s ease-in-out infinite;
    z-index: 3;
}

.slide-1 .chain {
    right: 40px;
}

.slide-2 .chain {
    left: 40px;
}

.slide-3 .chain {
    right: 40px;
}

@keyframes swing {
    0% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

/* ==== Bottom Plate Image ==== */

.bottom-img {
    position: absolute;
    background-image: url(../img/home/home-header-bottom.png);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

@media screen and (max-width: 900px) {
    .chain {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .slider-container {
        height: 70vh;
    }

    .slide h1 {
        font-size: 3rem;
        margin-bottom: 8px;
    }

    .slide p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .btn-menu {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .arrow {
        font-size: 2rem;
    }

    .arrow-left {
        left: 15px;
    }

    .arrow-right {
        right: 15px;
    }

    .slide-content {
        padding: 15px;
    }
}

@media screen and (max-width: 590px) {

    .slider-container {
        height: 60vh;
    }

    .slide-content {
        width: 100%;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content h4 {
        font-size: 1.3rem;
    }

    .arrow {
        display: none;
    }

    .chain {
        width: 170px;
        height: 170px;
    }
}

@media screen and (max-width: 480px) {
    .slide {
        width: 100%;
    }

    .slide p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .btn-menu {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .arrow {
        display: none;
    }

    .slide-content {
        padding: 10px;
    }

    .slider-container {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content h4 {
        font-size: 1rem;
    }

    .slide p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .chain {
        width: 140px;
        height: 140px;
    }

}

/*================================================
Home About Area CSS
=================================================*/

.home_about_section {
    background-color: rgba(0, 0, 0, 0.8);
}

.home_about_collage {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    height: 400px;
}

.home_about_left_image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.home_about_right_top,
.home_about_right_bottom {
    overflow: hidden;
    border-radius: 12px;
}

.home_about_right_top {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.home_about_right_bottom {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.home_about_collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid #f5b312;
}

.home_about_badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #130f00ff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    line-height: 1.05;
    z-index: 5;
    border: 2px solid #f5b312;
}

.home_about_badge img {
    width: 80px;
    height: 80px;
    border: none;
}

.home_about_badge small {
    display: block;
    font-weight: 700;
}

.home_about_text {
    padding-left: 10px;
    text-align: justify;
}

.home_about_heading {
    color: #f5b312;
    font-size: 20px;
    margin-bottom: 12px;
}

.home_about_text p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 12px;
}

#readMoreBtn {
    font-weight: 500;
    font-size: 13px;
    border: none;
    outline: none;
    color: #f5b312;
}

@media (min-width: 992px) {
    .more-content {
        display: block !important;
    }

    #readMoreBtn {
        display: none;
    }
}

@media (max-width: 576px) {
    .home_about_collage {
        height: 300px;
    }

    .home_about_badge {
        width: 130px;
        height: 130px;
    }
}

/*================================================
Our Signature Dishes Area CSS
=================================================*/

.signature-section {
    background-color: rgba(0, 0, 0, 0.8);
}

.description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #fff;
}

.leaf-container {
    margin-top: 20px;
}

.leaf-img {
    width: 100px;
    opacity: 0.9;
}

.highlight-text {
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.highlight-text span {
    color: #f5b312;
    font-size: 1.6rem;
}

.dish-card img {
    height: 200px;
    border: 2px solid #f5b312;
}

@media (max-width: 768px) {
    .dish-card img {
        width: 100%;
    }

    .highlight-text span {
        display: block;
    }
}

@media (max-width: 576px) {

    .description {
        padding: 0 10px;
    }

    .dish-1,
    .dish-2 {
        display: none;
    }
}

/*================================================
Home menu Area CSS
=================================================*/

.home_about_menu {
    background-color: rgba(0, 0, 0, 0.8);
}

.home_about_title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #f5b312;
}

.home_about_title span {
    color: #ffffff;
}

.home_about_menu_item {
    border-bottom: 1px dashed #999;
    padding: 12px 0;
}

.home_about_menu_item h5 {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #f5b312;
}

.home_about_menu_item h5 span {
    color: #f5b312;
}

.home_about_menu_item p {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0;
}

.home_about_images img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #f5b312;
    transition: transform 0.4s ease-in-out;
}

.home_about_images img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .home_about_text {
        margin-top: 40px;
        text-align: center;
    }

    .home_about_menu_item h5 {
        flex-direction: column;
        align-items: center;
    }

    .home_about_menu_item h5 span {
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .home_about_images img {
        height: 180px;
    }
}

/*================================================
Catering Service Area CSS
=================================================*/

.home-booking-section {
    background-color: rgba(0, 0, 0, 0.8);
}

.home-booking-row {
    display: flex;
    align-items: stretch;
}

.home-booking-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #f5b312;
}

.home-booking-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-booking-content h2 {
    color: #d4a017;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 2rem;
}

.home-booking-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

.home-booking-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.home-booking-content ul li {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.home-booking-content ul li::before {
    content: "✦";
    color: #d4a017;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.home-booking-btn {
    background-color: #d4a017;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    color: #fff;
}

.home-booking-btn:hover {
    background-color: #b58900;
}

@media (max-width: 991.98px) {
    .home-booking-content h2 {
        font-size: 1.8rem;
    }

    .home-booking-content p {
        font-size: 1rem;
    }

    .home-booking-content ul li {
        font-size: 0.95rem;
    }

    .home-booking-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .home-booking-row {
        flex-direction: column;
    }

    .home-booking-img {
        height: 250px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .home-booking-content {
        padding: 15px;
    }

    .home-booking-content h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .home-booking-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .home-booking-content ul {
        margin-bottom: 20px;
    }

    .home-booking-content ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding-left: 25px;
    }

    .home-booking-btn {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .home-booking-section {
        padding: 30px 0;
    }

    .home-booking-img {
        height: 200px;
    }

    .home-booking-content {
        padding: 10px;
    }

    .home-booking-content h2 {
        font-size: 1.4rem;
    }

    .home-booking-content p {
        font-size: 0.9rem;
    }

    .home-booking-content ul li {
        font-size: 0.85rem;
    }
}

/*================================================
About header Area CSS
=================================================*/

.about-section {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/about/about-header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid var(--primary-gold);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content h4 {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.about-content h4::before,
.about-content h4::after {
    content: '◇';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f5b312;
}

.about-content h4::before {
    left: -30px;
}

.about-content h4::after {
    right: -30px;
}

.about-content h1 {
    color: #f5b312;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-section {
        height: 30vh;
    }

    .about-content h4 {
        font-size: 1rem;
    }

    .about-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        height: 25vh;
    }

    .about-content h4 {
        font-size: 0.9rem;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content h4::before,
    .about-content h4::after {
        left: -20px;
        right: -20px;
    }
}

/*================================================
Our Heritage Area CSS
=================================================*/

.story-section {
    background-color: rgba(0, 0, 0, 0.8);
}

.story-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 2px solid #f5b312;
}

.counter {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-gray), rgba(212, 175, 55, 0.1));
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid var(--dark-gold);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-top: 0.5rem;
}

/*================================================
Our Mission Area CSS
=================================================*/

.approach-section {
    background-color: rgba(0, 0, 0, 0.8);
}

.mission-card {
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.mission-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/*================================================
About Book Area CSS
=================================================*/

.click-text {
    display: grid;
    place-items: center;
    color: #D4AF37;
    z-index: 9999;
    padding-bottom: 10px;
}

.book-section {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
    background-color: rgba(0, 0, 0, 0.8);
}

.book-container {
    perspective: 2000px;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.book {
    position: relative;
    width: 1000px;
    height: 700px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
}

.book-cover,
.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    background-color: transparent !important;
}

.book-cover {
    display: grid;
    place-items: center;
    z-index: 10;
    transform-origin: left center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.book-cover img {
    width: 100%;
    height: 700px;
    object-fit: contain;
    border-radius: 8px;
    background-color: transparent;
}

.book-cover.flipped {
    transform: rotateY(-180deg);
}

.book-page {
    background: #1a1a1a;
    display: flex;
    transform: translateZ(1px);
}

.page-left,
.page-right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.page-left {
    border-right: 2px solid #D4AF37;
}

.page-left img,
.page-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cover-ornament {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.islamic-pattern {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border: 3px solid #D4AF37;
    border-radius: 12px;
}

.islamic-pattern::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
}

.page-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    z-index: 20;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.nav-button:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev {
    left: -4rem;
}

.nav-button.next {
    right: -4rem;
}

.nav-button i {
    font-size: 1.25rem;
}

.menu-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 0.5rem;
}

.price-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(212, 175, 55, 0.5);
    margin: 0 1rem;
    height: 1px;
    align-self: flex-end;
}

.hidden {
    display: none !important;
}

.book.open {
    transform: translateX(0);
}

@media (max-width: 1278px) {
    .book-container {
        perspective: none;
        transform-style: flat;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .book {
        width: 100%;
        height: auto;
        min-height: 100vh;
        display: block;
        margin: 0 auto;
        transform: none;
    }

    .book-cover,
    .book-page {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        box-shadow: none;
        border-radius: 0;
        margin: 0 auto;
    }

    .book-cover img {
        width: 100%;
        height: auto;
        max-height: 100vh;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .book-cover.flipped {
        transform: none;
        display: none;
    }

    .book-page {
        display: block;
        transform: none;
    }

    .page-left,
    .page-right {
        width: 100%;
        height: auto;
        border: none;
        display: none;
        margin: 0 auto;
    }

    .page-left img,
    .page-right img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .nav-button,
    .page-counter {
        display: none !important;
    }

    .click-zone {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
        z-index: 25;
        cursor: pointer;
    }

    .click-left {
        left: 0;
        cursor: w-resize;
    }

    .click-right {
        right: 0;
        cursor: e-resize;
    }
}

@media (max-width: 480px) {
    .click-zone {
        width: 50%;
    }
}

@media (max-width: 1278px) {
    .book-section {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .container {
        padding-bottom: 0 !important;
    }

    .book {
        min-height: auto !important;
    }

    .book-cover img {
        margin-bottom: 0 !important;
    }

}

/*================================================
Menu header Area CSS
=================================================*/

.menu-section {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/menu/menu-header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid var(--primary-gold);
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.menu-content {
    position: relative;
    z-index: 2;
}

.menu-content h4 {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.menu-content h4::before,
.menu-content h4::after {
    content: '◇';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f5b312;
}

.menu-content h4::before {
    left: -30px;
}

.menu-content h4::after {
    right: -30px;
}

.menu-content h1 {
    color: #f5b312;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .menu-section {
        height: 30vh;
    }

    .menu-content h4 {
        font-size: 1rem;
    }

    .menu-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .menu-section {
        height: 25vh;
    }

    .menu-content h4 {
        font-size: 0.9rem;
    }

    .menu-content h1 {
        font-size: 2rem;
    }

    .menu-content h4::before,
    .menu-content h4::after {
        left: -20px;
        right: -20px;
    }
}

/*================================================
Menu Categories Area CSS
=================================================*/

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.8);
}

.category-btn {
    background: transparent !important;
    border: 2px solid #f5b312;
    color: #f5b312;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.category-btn:hover {
    background: #f5b312 !important;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.category-btn.active {
    background: #f5b312 !important;
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

/*================================================
Gallery header Area CSS
=================================================*/

.gallery-section {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/gallery/gallery-header.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid var(--primary-gold);
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gallery-content {
    position: relative;
    z-index: 2;
}

.gallery-content h4 {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.gallery-content h4::before,
.gallery-content h4::after {
    content: '◇';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f5b312;
}

.gallery-content h4::before {
    left: -30px;
}

.gallery-content h4::after {
    right: -30px;
}

.gallery-content h1 {
    color: #f5b312;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .gallery-section {
        height: 30vh;
    }

    .gallery-content h4 {
        font-size: 1rem;
    }

    .gallery-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        height: 25vh;
    }

    .gallery-content h4 {
        font-size: 0.9rem;
    }

    .gallery-content h1 {
        font-size: 2rem;
    }

    .gallery-content h4::before,
    .gallery-content h4::after {
        left: -20px;
        right: -20px;
    }
}

/*================================================
Contact header Area CSS
=================================================*/

.contact-section {
    position: relative;
    height: 40vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/contact/contact-header.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 2px solid var(--primary-gold);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h4 {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.contact-content h4::before,
.contact-content h4::after {
    content: '◇';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f5b312;
}

.contact-content h4::before {
    left: -30px;
}

.contact-content h4::after {
    right: -30px;
}

.contact-content h1 {
    color: #f5b312;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .contact-section {
        height: 30vh;
    }

    .contact-content h4 {
        font-size: 1rem;
    }

    .contact-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        height: 25vh;
    }

    .contact-content h4 {
        font-size: 0.9rem;
    }

    .contact-content h1 {
        font-size: 2rem;
    }

    .contact-content h4::before,
    .contact-content h4::after {
        left: -20px;
        right: -20px;
    }
}

/*================================================
Get In Cards Area CSS
=================================================*/

.contact-cards {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info-left {
    background-color: transparent;
    border-left: 5px solid var(--primary-gold);
    border-radius: 0 20px 20px 0;
    backdrop-filter: blur(10px);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin-left: 20px;
}

.contact-detail:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--dark-black);
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-detail-content p {
    color: var(--secondary-gold);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image {
    height: 300px;
    background: url(../img/contact/contact-img.png);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.contact-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-gold);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    color: var(--secondary-gold);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: 1.3fr 1.7fr;
        gap: 3rem;
    }

    .contact-detail-content h4 {
        font-size: 1.2rem;
    }

    .contact-detail-content p {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-left {
        border-left: none;
        border-radius: 20px 20px 0 0;
    }

    .contact-detail {
        margin-left: 0;
        border-left: 3px solid var(--primary-gold);
    }

    .contact-visual {
        flex-direction: column;
        align-items: center;
    }

    .contact-image {
        width: 100%;
        max-width: 600px;
        height: 250px;
    }

    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-detail-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .contact-detail-content h4 {
        font-size: 1.1rem;
    }

    .contact-detail-content p {
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .title-decoration {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-image {
        height: 200px;
        border-radius: 15px;
    }

    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/*================================================
Contact Form Area CSS
=================================================*/

.contact-form-section {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.form-info {
    padding: 2rem 0;
}

.form-info h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-info p {
    font-size: 1.2rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-features {
    list-style: none;
    padding: 0;
}

.form-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-gold);
}

.form-features li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 1rem;
    width: 20px;
}

.form-container {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 3rem 3rem 2rem 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), transparent, var(--primary-gold));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    color: var(--secondary-gold);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-input::-ms-expand {
    display: none;
}

.form-field select.form-input {
    background-image: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--dark-black);
    padding: 3px 10px;
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    .form-wrapper {
        gap: 3rem;
    }

    .form-info h2 {
        font-size: 2.5rem;
    }

    .form-info p {
        font-size: 1.1rem;
    }

    .form-features li {
        font-size: 1rem;
    }

    .form-input {
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 992px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-info {
        text-align: center;
        padding: 0;
    }

    .form-container {
        padding: 2.5rem 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-info h2 {
        font-size: 2rem;
    }

    .form-info p {
        font-size: 1rem;
    }

    .form-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .form-input {
        padding: 1rem 1rem;
        font-size: 0.95rem;
    }

    .form-label {
        font-size: 0.75rem;
        top: -8px;
    }
}

@media (max-width: 576px) {
    .form-info h2 {
        font-size: 1.8rem;
    }

    .form-info p {
        font-size: 0.95rem;
    }

    .form-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .form-input {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.7rem;
        top: -7px;
    }

    .btn-box a.default-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.2rem;
    }
}

/*================================================
Reservation Area CSS
=================================================*/

.reservation-content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.8);
}

.food-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    height: 100%;
    justify-content: center;
}

.floating-food {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    animation: floatFood 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-food:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.delay-1 {
    animation-delay: 1s;
}

.delay-2 {
    animation-delay: 2s;
}

.delay-3 {
    animation-delay: 3s;
}

@keyframes floatFood {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }

    75% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.2;
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/*================================================
Eat Socially Area CSS
=================================================*/

.eat-socially {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.circle-img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #f5b312;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .circle-img {
        width: 100px;
        height: 100px;
    }

    .photo-gallery {
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.5rem;
    }

    .circle-img {
        width: 80px;
        height: 80px;
    }

    .connect-link {
        font-size: 0.8rem;
    }
}

/*================================================
Cursor Area CSS
=================================================*/

body {
    cursor: none;
}

.gold-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #ffd700, #b8860b);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
}

.star-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 4px #ffd700);
    animation: particleFade 0.6s linear forwards;
    z-index: 99999;
}


@keyframes particleFade {
    0% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}




::-webkit-scrollbar {
    display: none;
}

::placeholder {
    color: #000 !important;
    opacity: 1;
}

/*

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #002b40;
    border-radius: 10px;
}*/

:root {
    scroll-padding-top: 80px;
}