@font-face {
    font-family: "Fraunces Wonky";
    src: url(../font/wonky.woff2) format("woff2"), url(../font/wonky.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Fraunces Wonky Soft";
    src: url(../font/wonkysoft.woff2) format("woff2"), url(../font/wonkysoft.woff) format("woff");
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: "Jost", sans-serif;
    color: #fff;
    background-color: #fbf4ec;
}

.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

.container .address {
    position: relative;
    display: flex;
    justify-content: flex-end !important;
    font-size: 14px;
    color: #fff;
    z-index: 9;
    font-weight: 200;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logosufi {
    width: 150px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
}

.nav-links2 a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
}

.hamburger-menu {
    display: none;
    font-family: "sufi-icon-font";
    font-size: 24px;
    cursor: pointer;
}

.hamburger-menu:before {
    content: "\e80e";
}

.right-section .digital-menu {
    padding: 13px 16px 12px 17px;
    border: 1px solid #e9d0b0;
    border-radius: 10px;
    color: #e9d0b0;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    font-weight: 200;
}

.right-section .digital-menu:hover {
    background-color: #e9d0b0;
    color: #331d0c;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-content {
    position: absolute;
    bottom: 100px;
    left: 255px;
    z-index: 100;
}

.slider-content h2 {
    font-family: "Fraunces", serif;
    font-size: 80px;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 20px;
    font-variation-settings: "WONK"0;
}

.slider-content h1 {
    font-family: "Fraunces", serif;
    font-size: 150px;
    font-weight: 300;
    line-height: 1;
}

.slider-controls {
    position: absolute;
    bottom: 100px;
    right: 255px;
    display: flex;
    gap: 20px;
    z-index: 100;
}

.slider-controls button {
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(255 255 255 / 0.5);
    font-family: "sufi-icon-font";
    font-size: 24px;
    transition: color 0.3s ease;
}

.slider-controls button:hover {
    color: #fff;
}

.slider-controls button.prev:before {
    content: "\e807";
    font-size: 90px;
}

.slider-controls button.next:before {
    content: "\e808";
    font-size: 90px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .address {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .logosufi {
        width: 120px;
    }

    .slider-controls button {
        display: block;
    }

    .hamburger-menu {
        display: block;
        background-color: #e9d0b0;
        padding: 15px;
        border-radius: 14px;
        color: #331d0c;
    }

    .right-section .digital-menu {
        display: none;
    }

    .slider-content {
        left: 20px;
        bottom: 80px;
        padding-right: 20px;
    }

    .slider-content h2 {
        font-size: 30px;
    }

    .slider-content h1 {
        font-size: 60px;
    }

    .slider-controls {
        right: 20px;
        bottom: 80px;
    }

    header .container {
        justify-content: space-between;
    }

    .left-section {
        gap: 0;
    }
}

.hamburger-menu span {
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
    transform-origin: left center;
}

.nav-links2 {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #06211f;
    padding: 100px 20px;
    box-shadow: -5px 0 15px rgb(0 0 0 / 0.5);
    transition: right 0.5s ease-in-out;
    z-index: 9;
}

.nav-links2 a {
    color: #fff;
    padding: 20px 0;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.nav-links2 a:hover {
    color: #e68d2c;
}

.nav-links2.active {
    right: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -10px);
}

.fixed-side-buttons {
    position: fixed;
    right: 86px;
    top: 54%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-button {
    position: relative;
    width: 66px;
    height: 242px;
    background-color: #e9d0b0;
    color: #331d0c;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 17px 32px 17px 32px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border-radius: 86px;
}

.reservation-button:hover {
    background-color: #d39546;
}

.reservation-button button {
    font-family: "sufi-icon-font";
    font-style: normal;
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 6px;
    background-color: #fff0;
    border: none;
}

.reservation-button button:before {
    content: "\e818";
    color: #331d0c;
}

.fa-arrow-up:before {
    color: #331d0c;
}

.reservation-button span {
    font-size: 16px;
    font-weight: 500;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    text-transform: uppercase;
    padding-top: 8px;
    letter-spacing: 2px;
}

.qr-button {
    width: 66px;
    height: 66px;
    background-color: #e9d0b0;
    color: #331d0c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border-radius: 86px;
}

.qr-button:hover {
    background-color: #d39546;
}

.user-button {
    width: 66px;
    height: 66px;
    background-color: #e9d0b0;
    color: #331d0c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border-radius: 86px;
}

.user-button:hover {
    background-color: #d39546;
}

.user-button button {
    font-size: 27px;
    background-color: #fff0;
    border: none;
}

.qr-button button {
    font-family: "sufi-icon-font";
    font-style: normal;
    font-size: 40px;
    background-color: #fff0;
    border: none;
}

.qr-button button:before {
    content: "\e81c";
    color: #331d0c;
}

.fa-user-plus:before {
    color: #331d0c;
}

@media (max-width: 768px) {
    .reservation-button span {
        display: none;
    }

    .right-section {
        display: flex;
        padding-left: 24px;
        align-items: center;
    }

    .reservation-button {
        width: 86px;
        height: 86px;
        justify-content: center;
    }

    .reservation-button button {
        margin: 0;
    }

    .fixed-side-buttons {
        top: 35%;
        right: 24px;
    }
}

.menu-section {
    background-color: #0c332f;
    position: relative;
    padding: 180px 0;
    overflow: hidden;
}

.menu-section::before {
    content: "Sufi Menu";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Fraunces", serif;
    font-size: 200px;
    color: rgb(255 255 255 / 0.05);
    white-space: nowrap;
}

.menu-title {
    font-family: "Fraunces", serif;
    font-size: 72px;
    font-weight: 200;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.menu-title span {
    font-style: italic;
    font-variation-settings: "WONK"0;
}

.menu-grid {
    display: flex;
    margin-bottom: 60px;
}

.menu-item {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.menu-item img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
    display: block;
    transform-origin: right top;
}

.menu-item:hover img {
    transform: scale(1.02);
}

.menu-item-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.menu-item-text {
    color: #fff;
    padding-bottom: 20px;
    padding-left: 20px;
}

.menu-item-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #331d0c;
    margin-bottom: 10px;
}

.menu-item-title {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 350;
    color: #331d0c;
    font-variation-settings: "WONK"0;
}

.menu-item-arrow {
    font-family: "sufi-icon-font";
    color: #331d0c;
    font-size: 34px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.menu-item-arrow:before {
    content: "\e805";
}

.view-all-button {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #fff;
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.view-all-button:hover {
    background-color: #d39546;
    border-color: #d39546;
    color: #fff;
}

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

.back-text {
    filter: invert(1);
    opacity: 0.05;
    position: absolute;
    top: 120px;
}

@media (max-width: 768px) {
    .menu-grid {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .menu-item {
        margin-bottom: 10px;
    }

    .view-all-button {
        padding: 25px 30px;
    }

    .menu-title {
        font-size: 48px;
        padding: 0 20px;
    }

    .menu-section {
        padding-bottom: 50px;
    }

    .menu-section::before {
        font-size: 100px;
    }
}

.about-section {
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #0c332f;
    border-bottom-left-radius: 300px;
}

.about-content {
    position: relative;
    display: flex;
    gap: 80px;
}

.text-content {
    flex: 1;
    padding-top: 50px;
    max-width: 580px;
}

.text-content h2 {
    font-family: "Fraunces", serif;
    font-size: 64px;
    font-weight: 350;
    color: #e9d0b0;
    line-height: 1.2;
    margin-bottom: 100px;
}

.text-content p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 40px;
    line-height: 1.5;
    padding-top: 60px;
}

.about-btn {
    display: inline-block;
    padding: 25px 25px 24px 25px;
    border: 1px solid #331d0c;
    color: #331d0c;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: #fff0;
    cursor: pointer;
}

.about-btn:hover {
    background-color: #d39546;
    border-color: #d39546;
    color: #fff;
}

.image-content {
    flex: 2;
    display: flex;
    gap: 20px;
}

.center-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 200px 200px 200px 200px;
}

.right-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 200px 0 0 200px;
}

@media (max-width: 768px) {
    .about-section {
        padding-bottom: 50px;
    }

    .about-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .text-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .text-content h2 {
        font-size: 48px;
    }

    .text-content p {
        font-size: 18px;
    }

    .image-content {
        flex-direction: column;
        gap: 30px;
    }

    .center-image,
    .right-image {
        width: 100%;
    }
}

.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

.video-content {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    margin-left: 100px;
    margin-right: 100px;
}

.video-text {
    max-width: 780px;
}

.video-text h2 {
    font-family: "Fraunces", serif;
    font-size: 64px;
    font-weight: 250;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    font-variation-settings: "WONK"0;
}

.video-text h1 {
    font-family: "Fraunces", serif;
    font-size: 128px;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.video-text p {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    line-height: 1.5;
}

.video-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.play-button {
    width: 182px;
    height: 182px;
    border-radius: 50%;
    background-color: #e9d0b0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.play-button .sufi-icon {
    font-family: "sufi-icon-font";
    color: #331d0c;
    font-size: 48px;
    transition: all 0.3s ease;
}

.play-button .playicon {
    color: #331d0c;
    font-size: 48px;
    transition: all 0.3s ease;
}

.play-button .sufi-icon:before {
    content: "\e81d";
}

.play-button:hover {
    transform: scale(0.95);
}

.play-button:hover .sufi-icon {
    transform: scale(1.1);
}

.play-button:hover .playicon {
    transform: scale(1.1);
}

.play-button-wrapper span {
    font-family: "Fraunces", serif;
    font-size: 20px;
    font-weight: 250;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {
    .video-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .video-text h2 {
        font-size: 36px;
        margin-bottom: 0;
    }

    .video-text h1 {
        font-size: 64px;
    }

    .video-text p {
        font-size: 16px;
    }

    .video-right {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .video-background {
        padding: 20px;
    }

    .video-background img {
        border-radius: 50px;
    }
}

.background-image {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/back.webp) no-repeat center center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.reservation-section {
    position: relative;
    padding-bottom: 150px;
    background-color: #fff;
}

.reservation-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.reservation-left {
    flex: 1;
    z-index: 1;
    padding-top: 50px;
}

.reservation-left .icon-rezervasyon {
    font-size: 48px;
    color: #d39546;
    margin-bottom: 30px;
    display: block;
}

.reservation-left h2 {
    font-family: "Fraunces", serif;
    font-size: 60px;
    font-weight: 250;
    color: #e9d0b0;
    margin-bottom: 30px;
    font-variation-settings: "WONK"0;
}

.reservation-left h2 span {
    font-style: italic;
}

.reservation-left p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    margin-bottom: 40px;
    max-width: 520px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid #e9d0b0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 120px;
}

.phone-button:hover {
    background-color: #e9d0b0;
}

.phone-button:hover .phone-icon-wrapper {
    background-color: #331d0c;
}

.phone-button:hover .phone-icon-wrapper i {
    color: #e9d0b0;
}

.phone-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #e9d0b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-icon-wrapper i {
    font-size: 16px;
    color: #331d0c;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.call-text {
    font-family: "Fraunces", serif;
    font-size: 20px;
    font-weight: 400;
    color: #331d0c;
}

.phone-number {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #331d0c;
}

.reservation-form {
    flex: 1;
    background: #fff;
    border-radius: 48px;
    padding: 40px;
    box-shadow: 0 4px 15px rgb(12 51 47 / 0.1);
    z-index: 1;
    margin-top: 80px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #e9d0b0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid rgb(51 29 12 / 0.1);
    border-radius: 5px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #331d0c;
}

.form-group textarea {
    height: 192px;
    padding-left: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.error-text {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid #331d0c;
    display: inline-block;
    position: relative;
}

.checkbox-text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #331d0c;
}

.checkbox-text a {
    color: #331d0c;
    text-decoration: underline;
}

button[type="submit"] {
    padding: 15px 30px;
    border: 1px solid #331d0c;
    background: #fff0;
    color: #331d0c;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #331d0c;
    border-color: #331d0c;
    color: #fff;
}

.name-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

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

    .reservation-left h2 {
        font-size: 48px;
    }

    .form-row {
        flex-direction: column;
    }
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    color: #331d0c;
    gap: 10px;
    position: relative;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #fff0;
    border: 2px solid #331d0c;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.checkmark::after {
    content: "\2713";
    font-size: 14px;
    color: #fff;
    display: none;
}

.checkbox-container input:checked+.checkmark {
    background-color: #331d0c;
    border-color: #331d0c;
}

.checkbox-container input:checked+.checkmark::after {
    display: block;
}

.instagram-section {
    background-color: #0c2733;
    border-radius: 100px 0 0 0;
    padding: 100px 0 40px 0;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.header-title h2 {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.header-title h1 {
    font-family: "Fraunces", serif;
    font-size: 64px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.instagram-link i {
    font-size: 24px;
    color: #e9d0b0;
}

.instagram-link i:before {
    content: "\e802";
}

.instagram-link span {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #e9d0b0;
}

.instagram-slider {
    position: relative;
    overflow: hidden;
    margin-left: calc((100% - 1410px) / 2);
}

.slider-container2 {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 50px;
}

.slider-item {
    position: relative;
    flex: 0 0 400px;
    height: 400px;
    overflow: hidden;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-item .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-item:hover .overlay {
    opacity: 1;
}

.food-info-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.food-info-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.food-info-slide:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: #fff;
    font-size: 32px;
}

.overlay i:before {
    content: "\e802";
}

.overlay2 i {
    color: #fff;
    font-size: 32px;
}

.overlay2 i:before {
    content: "\e802";
}

.slider-controls2 {
    max-width: 1410px;
    margin: 20px 0 0 0;
    padding: 0 0;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgb(233 208 176 / 0.3);
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}

.progress-bar-fill {
    position: absolute;
    height: 100%;
    background: #e9d0b0;
    width: 33.3333%;
    left: 0;
    border-radius: 5px;
    transition: left 0.3s ease;
}

.instagram-link:hover .icon-instagram {
    color: #fff;
}

.instagram-link:hover span {
    color: #fff;
}

.testimonials {
    padding: 80px 0;
    background-color: #fdfaf7;
}

.testimonials-content {
    display: flex;
    gap: 80px;
}

@media (max-width: 1024px) {
    .testimonials-content {
        flex-direction: column;
        gap: 40px;
    }
}

.left-content {
    flex: 1;
}

.left-content h2 {
    font-family: "Fraunces", serif;
    font-size: 96px;
    font-weight: 300;
    font-style: italic;
    color: #0c332f;
    line-height: 1;
    margin-bottom: 0;
    font-variation-settings: "WONK"0;
}

.left-content h3 {
    font-family: "Fraunces", serif;
    font-size: 96px;
    font-weight: 300;
    color: #0c332f;
    line-height: 1;
    margin: 0 0 40px;
    font-variation-settings: "WONK"0;
}

@media (max-width: 768px) {

    .left-content h2,
    .left-content h3 {
        font-size: 48px;
    }
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 25px 25px 24px 25px;
    border: 1px solid #331d0c;
    text-decoration: none;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.google-link:hover {
    background-color: #e9d0b0;
    border-color: #e9d0b0;
}

.google-link span {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #331d0c;
}

.slider-nav {
    display: flex;
    gap: 20px;
}

.nav-button {
    width: 96px;
    height: 96px;
    border: 1px solid #e9d0b0;
    border-radius: 50%;
    background: #fff0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button i {
    color: #e9d0b0;
    font-size: 48px;
    transition: all 0.3s ease;
}

.nav-button i.icon-arrow-left:before {
    content: "\e807";
}

.nav-button i.icon-arrow-right:before {
    content: "\e808";
}

.nav-button:hover {
    background: #e9d0b0;
}

.nav-button:hover i {
    color: #331d0c;
}

.right-content {
    flex: 1;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

.icon-quote {
    color: #e9d0b0;
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.testimonial-item p {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #0c332f;
    margin-bottom: 20px;
    line-height: 1.5;
}

.rating {
    color: #61b300;
    font-size: 24px;
    margin-bottom: 12px;
}

.testimonial-item h4 {
    font-family: "Fraunces", serif;
    font-size: 32px;
    font-weight: 300;
    color: #0c332f;
    margin: 0 0 8px;
}

.date {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #0c332f;
}

.slider-dots {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 80px;
    height: 2px;
    background: rgb(12 51 47 / 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #0c332f;
}

.footer {
    background-color: #0c332f;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
}

.footer-left {
    flex: 1;
    position: relative;
    padding-right: 40px;
}

.footer-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #e9d0b047;
}

.footer-logo {
    margin-bottom: 40px;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-text h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    font-weight: 200;
    color: #e9d0b0;
    margin-bottom: 8px;
}

.hero-text span {
    font-family: "Fraunces", serif;
    font-size: 40px;
    font-weight: 200;
    font-style: italic;
    color: #e9d0b0;
    font-variation-settings: "WONK"0;
}

.reservation-button2 i {
    font-family: "sufi-icon-font";
    font-style: normal;
    font-size: 32px;
    margin-bottom: 15px;
    margin-top: 6px;
}

.reservation-button2 i:before {
    content: "\e818";
}

.reservation-button2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 20px;
    background-color: #e9d0b0;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.reservation-button2 i {
    font-size: 52px;
    color: #331d0c;
}

.reservation-button2 span {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #331d0c;
    letter-spacing: 1.5px;
    transition: transform 0.3s ease;
}

.reservation-button2:hover span {
    transform: translateX(8px);
}

.reservation-button2:hover {
    padding: 7px 28px 7px 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link i {
    font-size: 24px;
    color: #e9d0b0;
    transition: color 0.3s ease;
    font-family: "sufi-icon-font";
    font-style: normal;
}

.social-link .icon-facebook:before {
    content: "\e801";
}

.social-link .icon-instagram:before {
    content: "\e802";
}

.social-link:hover i {
    color: #fff;
}

.social-link2 i {
    font-size: 24px;
    color: #e9d0b0;
    transition: color 0.3s ease;
    font-style: normal;
}

.social-link2:hover i {
    color: #fff;
}

.copyright {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.copyright .disclaimer {
    opacity: 0.6;
    margin-top: 8px;
}

.footer-right {
    flex: 2;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border: 1px solid #e9d0b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    color: #e9d0b0;
    font-size: 24px;
    font-family: "sufi-icon-font";
    font-style: normal;
}

.icon-wrapper i:before {
    content: "\e810";
}

.ikon2 i:before {
    content: "\e812";
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content .label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #e9d0b0;
    margin-bottom: 4px;
}

.info-content .value {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content .value:hover {
    color: #e9d0b0;
}

.footer-menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-left: 50px;
}

.menu-column h3 {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 300;
    color: #e9d0b0;
    margin-bottom: 24px;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column ul li {
    margin-bottom: 12px;
}

.menu-column ul li a {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-column ul li a:hover {
    color: #e9d0b0;
}

.digital-menu {
    text-align: center;
    border: 1px solid #e9d0b047;
    border-radius: 24px;
    padding: 32px;
}

.digital-menu p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}

.view-button {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    transition: background-color 0.3s ease;
}

.view-button:hover {
    background-color: #d39546;
}

.payment-portal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #d39546;
    border-radius: 100px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: background-color 0.3s ease;
    margin-top: 50px;
}

.payment-portal:hover {
    background-color: #e8a95a;
}

.payment-portal i {
    color: #331d0c;
    font-family: "sufi-icon-font";
    font-style: normal;
    font-size: 32px;
}

.payment-portal i:before {
    content: "\e81b";
}

.payment-portal span {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #331d0c;
    letter-spacing: 1.5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 50px;
}

.policies {
    display: flex;
    gap: 24px;
}

.policies a {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policies a:hover {
    color: #e9d0b0;
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left::after {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 24px;
    }

    .footer-menus {
        grid-template-columns: 1fr;
        padding-left: 0;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-left: 0;
    }

    .hero-text h2 {
        letter-spacing: -2px;
        font-size: 36px;
    }

    .footer-logo {
        margin-left: 110px;
    }

    .digital-menu {
        margin: 32px;
        padding: 20px;
    }

    .policies {
        flex-direction: column;
        gap: 12px;
    }
}

.divider {
    content: "";
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9d0b047;
}

.about-banner {
    background-image: url(../img/banner.webp);
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.about-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.about-title {
    font-family: "Fraunces", serif;
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    font-variation-settings: "WONK"0;
    margin-bottom: 2rem;
}

.about-title2 {
    font-family: "Fraunces", serif;
    font-size: 96px;
    font-weight: 300;
    color: #fff;
    font-variation-settings: "WONK"0;
}

.about-breadcrumb {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #e9d0b0;
    margin-top: 20px;
}

.about-section2 {
    background-color: #fff;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 30px;
    align-items: start;
}

.about-text {
    max-width: 600px;
}

.about-heading {
    font-family: "Fraunces", serif;
    font-size: 59px;
    font-weight: 400;
    color: #331d0c;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 30px;
}

.about-description2 {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 30px;
}

.about-subtext {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #331d0c;
    line-height: 1.6;
}

.about-image-1 {
    position: relative;
    padding: 30px 0;
}

.about-image-1 img {
    border-radius: 362px;
}

.about-image-1 img,
.about-image-2 img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-2 {
    margin-top: 250px;
}

@media screen and (max-width: 1200px) {
    .about-heading {
        font-size: 56px;
    }

    .about-description {
        font-size: 20px;
    }

    .about-subtext {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image-2 {
        margin-top: 0;
    }

    .about-banner {
        height: 300px;
    }

    .about-title {
        font-size: 48px;
    }

    .about-title2 {
        font-size: 48px;
    }
}

@media screen and (max-width: 768px) {
    .about-banner {
        height: 250px;
        padding-bottom: 30px;
    }

    .about-section2 {
        padding: 60px 0;
    }

    .about-heading {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .info-content .value {
        font-size: 14px;
    }

    .about-subtext {
        font-size: 16px;
    }

    .about-banner .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-breadcrumb {
        margin-top: 10px;
        margin-bottom: 17px;
    }
}

@media screen and (max-width: 576px) {
    .about-title {
        font-size: 36px;
    }

    .about-section2 {
        padding: 40px 0;
    }

    .about-grid {
        gap: 30px;
    }
}

.why-sufi {
    background-color: #fff;
    padding: 100px 0;
}

.why-sufi-content {
    background-color: rgb(233 208 176 / 0.1);
    border-radius: 30px;
    padding: 110px 10px;
    margin: 60px;
}

.why-sufi-title {
    font-family: "Fraunces", serif;
    font-size: 72px;
    color: #331d0c;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.why-sufi-title .italic {
    font-style: italic;
    font-weight: 400;
}

.why-sufi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    align-items: start;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background-color: rgb(233 208 176 / 0.2);
    border-radius: 426px;
    height: 515px;
    width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.feature-card i {
    font-size: 96px;
    color: #331d0c;
    margin-bottom: 30px;
}

.feature-text {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #331d0c;
    text-align: center;
}

.description-title {
    font-family: "Fraunces", serif;
    font-size: 27px;
    font-weight: 300;
    font-style: italic;
    color: #331d0c;
    margin-bottom: 30px;
}

.description-text {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #331d0c;
    line-height: 1.6;
}

@media screen and (max-width: 1400px) {
    .feature-card {
        width: 280px;
        height: 440px;
    }
}

@media screen and (max-width: 1200px) {
    .why-sufi-title {
        font-size: 56px;
    }

    .feature-card {
        width: 240px;
        height: 380px;
    }

    .feature-card i {
        font-size: 72px;
    }

    .feature-text {
        font-size: 20px;
    }

    .description-title {
        font-size: 28px;
    }

    .description-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .why-sufi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-cards {
        justify-content: center;
    }

    .why-sufi-content {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .why-sufi {
        padding: 60px 0;
    }

    .why-sufi-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        width: 100%;
        height: 300px;
    }

    .description-title {
        font-size: 24px;
    }

    .description-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .why-sufi-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .why-sufi-title {
        font-size: 36px;
    }

    .feature-card {
        height: 250px;
    }

    .feature-card i {
        font-size: 60px;
    }
}

.events {
    background-color: #0c332f;
    padding: 100px 0;
}

.events-title {
    font-family: "Fraunces", serif;
    font-size: 64px;
    font-weight: 200;
    color: #e9d0b0;
    text-align: center;
    margin-bottom: 30px;
}

.events-title .italic {
    font-style: italic;
}

.events-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    margin-bottom: 60px;
}

.event-card {
    text-align: center;
}

.event-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-image.oval {
    border-radius: 425px;
}

.event-image.rounded {
    border-radius: 50px;
}

.event-title {
    font-family: "Jost", sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #e9d0b0;
    margin-bottom: 20px;
}

.event-info {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.8;
}

.button-container {
    text-align: center;
}

.reservation-button3 {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: 1px solid #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reservation-button3:hover {
    background-color: #d39546;
    border-color: #d39546;
}

@media screen and (max-width: 1200px) {
    .events-title {
        font-size: 52px;
    }

    .event-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 992px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .event-image {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .events {
        padding: 60px 0;
    }

    .events-title {
        font-size: 42px;
    }

    .events-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .event-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .events-title {
        font-size: 32px;
    }

    .food-details-section {
        padding: 10px;
    }

    .events-subtitle {
        font-size: 16px;
    }

    .event-image.oval {
        border-radius: 200px;
    }

    .event-image.rounded {
        border-radius: 30px;
    }

    .reservation-button3 {
        font-size: 14px;
        padding: 12px 24px;
    }
}

.blog-section {
    padding: 80px;
    background-color: #fff;
}

.blg-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blg-post {
    position: relative;
}

.blg-image-container {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.blg-image {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.blg-image-container:hover .blg-image {
    transform: scale(1.1);
}

.blg-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    margin-top: -35px;
}

.blg-category {
    background-color: #0c332f;
    color: #fff;
    padding: 16px 32px;
    border-radius: 396px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    top: -20px;
    left: 20px;
    position: relative;
}

.blg-date {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0c332f;
}

.blg-title {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: 36px;
    color: #0c332f;
    margin-bottom: 15px;
}

.blg-description {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #0c332f;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .blg-row {
        grid-template-columns: 1fr;
    }

    .blg-title {
        font-size: 28px;
    }

    .blog-section {
        padding: 50px 10px;
    }

    .container-blog {
        padding: 40px !important;
    }
}

@media screen and (max-width: 480px) {
    .blg-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blg-title {
        font-size: 24px;
    }

    .blg-category {
        padding: 12px 24px;
    }
}

.container-blog {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 100px;
}

.blog-detail {
    padding: 40px 0;
    background-color: #fff;
}

.blog-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-text {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #331d0c;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(233 208 176 / 0.2);
    color: #331d0c;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #e9d0b0;
}

.blog-detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-image {
    width: 100%;
    margin-bottom: 40px;
}

.blog-image img {
    width: 100%;
    height: auto;
}

.blog-title {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: 72px;
    color: #331d0c;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.blog-title span {
    font-style: italic;
    font-variation-settings: "WONK"0;
}

.blog-detail-content p {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 24px;
    color: #331d0c;
    line-height: 1.5;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .blog-detail {
        padding: 30px 0;
    }

    .blog-detail-header {
        flex-direction: column;
        gap: 20px;
    }

    .blog-title {
        font-size: 48px;
    }

    .blog-detail-content p {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-description {
        font-size: 18px;
    }
}

.reservation-form2 {
    background: #fff;
    border-radius: 48px;
    padding: 55px;
    box-shadow: 0 4px 15px rgb(12 51 47 / 0.1);
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.reservation-form2 h2 {
    font-family: "Fraunces", serif;
    font-size: 64px;
    font-weight: 250;
    color: #e9d0b0;
    margin-bottom: 30px;
    font-variation-settings: "WONK"0;
}

.reservation-form2 h2 span {
    font-variation-settings: "WONK"0;
    font-style: italic;
    font-weight: 500;
    color: #d39546;
}

.reservation-form2 p {
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 200;
    color: #331d0c;
    margin-bottom: 40px;
    max-width: 520px;
}

.contact-info2 {
    padding: 150px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-item:nth-child(1),
.contact-item:nth-child(2) {
    border-right: 1px solid #e9d0b0;
}

.contact-icon {
    font-size: 48px;
    color: #331d0c;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: translateY(-10px);
}

.contact-text {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #331d0c;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-link {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0c332f;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #331d0c;
}

@media screen and (max-width: 992px) {
    .contact-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item:nth-child(1),
    .contact-item:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #e9d0b0;
        padding-bottom: 40px;
    }

    .contact-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .contact-info2 {
        padding: 40px 0;
    }

    .contact-icon {
        font-size: 36px;
    }

    .contact-text {
        font-size: 16px;
    }

    .contact-link {
        font-size: 14px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    padding: 0 70px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-icon {
    font-size: 48px;
    color: #331d0c;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-text {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #331d0c;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0c332f;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
    margin-top: auto;
    letter-spacing: 1px;
}

@media screen and (max-width: 992px) {
    .contact-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reservation-form2 {
        flex-direction: column;
    }

    .contact-item:nth-child(1),
    .contact-item:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #e9d0b0;
        padding-bottom: 40px;
    }

    .contact-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .contact-info2 {
        padding: 40px 0;
    }

    .contact-icon {
        font-size: 36px;
    }

    .contact-text {
        font-size: 16px;
    }

    .contact-link {
        font-size: 14px;
    }
}

.menu-title2 {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 150;
    font-style: italic;
    color: #fff;
    font-variation-settings: "WONK"0;
    text-align: left;
}

.food-menu-showcase {
    padding: 50px 0;
    background-color: #0c2733;
}

.food-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.food-menu-card {
    display: block;
    text-decoration: none;
}

.food-menu-image-container {
    position: relative;
    overflow: hidden;
}

.food-menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-menu-card:hover .food-menu-image {
    transform: scale(1.05);
}

.food-menu-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgb(12 39 51 / 0.8) 0%, #fff0 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.food-menu-description {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.food-menu-title {
    font-family: "Fraunces", serif;
    font-weight: 350;
    font-size: 36px;
    color: #fff;
    margin: 0;
    font-variation-settings: "WONK"0;
}

@media (max-width: 992px) {
    .food-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .food-menu-grid {
        grid-template-columns: 1fr;
    }

    .food-menu-image-container {
        height: 350px;
    }

    .food-menu-title {
        font-size: 30px;
    }

    .food-menu-description {
        font-size: 18px;
    }

    .menu-title2 {
        font-size: 24px;
        text-align: center;
    }

    .container .address {
        display: none;
    }

    .about-section::before {
        border-bottom-left-radius: 50px;
        height: 80%;
    }
}

.menu-bottom-area {
    background-color: #0c2733;
    padding: 60px 0;
    position: relative;
}

.menu-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-bottom-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-bottom-text {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.menu-bottom-arrow-container {
    width: 96px;
    height: 96px;
    border: 1px solid #e9d0b0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-arrow-down {
    font-size: 48px;
    color: #e9d0b0;
}

.menu-bottom-right {
    width: 55%;
    position: absolute;
    left: 50%;
}

.menu-bottom-image {
    width: 100%;
    display: block;
    position: relative;
    bottom: -80px;
    z-index: 9;
}

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

    .menu-bottom-left {
        width: 100%;
        margin-bottom: 40px;
        align-items: center;
    }

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

    .menu-bottom-right {
        width: 100%;
        position: relative;
        left: 0;
    }

    .menu-bottom-image {
        max-width: 100%;
        margin: 0 auto;
        bottom: 0;
    }
}

@media (max-width: 767px) {
    .menu-bottom-area {
        padding: 40px 0 60px;
    }

    .menu-bottom-text {
        font-size: 18px;
    }

    .menu-bottom-arrow-container {
        width: 80px;
        height: 80px;
    }

    .icon-arrow-down {
        font-size: 40px;
    }
}

.menu-detail-area {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.menu-detail-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.menu-detail-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #f3f5f4;
    border-radius: 50px;
}

.menu-detail-text-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-detail-text-left,
.menu-detail-text-right {
    padding: 60px;
}

.menu-detail-text-left h3,
.menu-detail-text-right h3 {
    font-family: "Fraunces", serif;
    font-weight: 350;
    color: #331d0c;
    font-variation-settings: "WONK"0;
    letter-spacing: -2px;
}

.menu-detail-text-left h3 {
    font-size: 48px;
}

.menu-detail-text-right h3 {
    font-size: 64px;
}

.menu-detail-text-left p,
.menu-detail-text-right p {
    font-family: "Jost", serif;
    font-weight: 300;
    color: #331d0c;
    padding-top: 40px;
}

.menu-detail-text-left p {
    font-size: 24px;
    line-height: 48px;
}

.menu-detail-text-right p {
    font-size: 20px;
}

@media screen and (max-width: 1024px) {
    .menu-detail-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-detail-left,
    .menu-detail-text-right {
        width: 80%;
    }

    .menu-detail-text-left,
    .menu-detail-text-right {
        padding: 40px;
    }

    .menu-detail-text-left h3 {
        font-size: 42px;
    }

    .menu-detail-text-right h3 {
        font-size: 52px;
    }

    .menu-detail-text-left p {
        font-size: 22px;
        line-height: 40px;
    }

    .menu-detail-text-right p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {

    .menu-detail-left,
    .menu-detail-text-right {
        width: 100%;
        text-align: left;
    }

    #languageToggle {
        display: none;
    }

    .menu-detail-text-left,
    .menu-detail-text-right {
        padding: 30px;
    }

    .menu-detail-text-left h3 {
        font-size: 36px;
    }

    .menu-detail-text-right h3 {
        font-size: 44px;
    }

    .menu-detail-text-left p {
        font-size: 20px;
        line-height: 36px;
    }

    .menu-detail-text-right p {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .menu-detail-area {
        padding: 60px 0;
    }

    .menu-detail-text-left h3,
    .menu-detail-text-right h3 {
        font-size: 28px;
    }

    .menu-detail-text-left p,
    .menu-detail-text-right p {
        font-size: 16px;
        line-height: 30px;
    }
}

.food-details-section {
    padding: 50px;
    background-color: #fff;
}

.food-details-container {
    background-color: #331d0c;
    border-radius: 100px;
    padding: 50px;
}

.food-details-images {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.food-details-image-left,
.food-details-image-right {
    width: 50%;
}

.food-details-img {
    width: 100%;
    border-radius: 100px;
    display: block;
}

.food-details-content {
    text-align: left;
}

.food-details-main-title {
    color: #e9d0b0;
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "WONK"0;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.food-details-section-item {
    margin-bottom: 30px;
}

.food-details-container .container {
    padding: 50px;
}

.food-details-title {
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: 36px;
    font-weight: 200;
    font-style: italic;
    font-variation-settings: "WONK"0;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.food-details-text {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .food-details-container {
        padding: 40px;
        border-radius: 60px;
    }

    .food-details-img {
        border-radius: 60px;
    }

    .food-details-main-title {
        font-size: 40px;
    }

    .food-details-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .food-details-container {
        padding: 30px;
        border-radius: 40px;
    }

    .food-details-images {
        flex-direction: column;
        gap: 15px;
    }

    .food-details-image-left,
    .food-details-image-right {
        width: 100%;
    }

    .food-details-img {
        border-radius: 40px;
    }

    .food-details-main-title {
        font-size: 32px;
    }

    .food-details-title {
        font-size: 28px;
    }

    .food-details-text {
        font-size: 18px;
    }

    .food-details-container .container {
        padding: 20px;
    }
}

.container-food {
    margin-left: calc((100% - 1410px) / 2);
}

.food-info-slider-section {
    padding: 60px 0;
    overflow: hidden;
    background-color: #fff;
}

.food-info-slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.food-info-slider-container::-webkit-scrollbar {
    display: none;
}

.food-info-slider-wrapper {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}

.food-info-slide {
    max-width: 400px;
    flex: 0 0 auto;
    background-color: rgb(233 208 176 / 0.1);
    padding: 30px;
}

.food-info-slide-title {
    color: #331d0c;
    font-family: "Fraunces", serif;
    font-size: 36px;
    font-weight: 400;
    font-variation-settings: "WONK"0;
    margin-bottom: 20px;
}

.food-info-slide-desc {
    color: #331d0c;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.food-info-slider-progress {
    height: 4px;
    background-color: rgb(51 29 12 / 0.1);
    border-radius: 2px;
    margin-top: 30px;
    position: relative;
}

.food-info-slider-progress-bar {
    height: 100%;
    width: 20%;
    background-color: #331d0c;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
}

@media (max-width: 992px) {
    .food-info-slide {
        max-width: 320px;
        padding: 25px;
    }

    .food-info-slide-title {
        font-size: 30px;
    }

    .food-info-slide-desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .food-info-slide {
        max-width: 280px;
        padding: 20px;
    }

    .container-food {
        padding: 0 20px;
        margin-left: auto;
    }

    .food-info-slide-title {
        font-size: 26px;
    }

    .food-info-slide-desc {
        font-size: 16px;
    }

    .contact-info {
        padding-left: 0;
    }

    .contact-info {
        padding-left: 0;
    }
}

#popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 40px;
    padding-left: 70px;
    max-width: 1500px;
}

.popup-content .reservation-form {
    box-shadow: none;
}

.popup-content .reservation-content .reservation-left h2 {
    color: #331d0c;
}

.popup-content .reservation-content .reservation-left p {
    color: #331d0c;
}

.popup-content .reservation-content .reservation-left .phone-button {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-height: 85vh;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 20px;
        overflow-y: auto;
    }

    .popup-content .reservation-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .popup-content .reservation-left {
        margin-bottom: 20px;
    }

    .popup-content .reservation-form .form-row {
        flex-direction: column;
    }

    .popup-content .reservation-content .reservation-left p {
        display: none;
    }

    .popup-content .reservation-form .form-group {
        min-width: 100%;
        margin-bottom: 10px;
    }

    .checkmark {
        width: 40px;
    }

    .reservation-form2 h2 {
        font-size: 48px;
    }

    .name-row {
        flex-direction: column;
        gap: 0;
    }

    .name-row .form-group {
        min-width: 100% !important;
    }
}

.close-popup {
    position: absolute;
    top: 150px;
    right: 150px;
    font-size: 50px;
    color: #331d0c;
    cursor: pointer;
    z-index: 9;
    display: none;
}

@media screen and (max-width: 1360px) {
    .close-popup {
        top: 100px;
        right: 100px;
        font-size: 35px;
    }
}

@media screen and (max-width: 480px) {
    .close-popup {
        top: 80px;
        right: 50px;
        font-size: 30px;
    }
}

.overlay-close-button {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #331d0c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.overlay-close-button:hover {
    background-color: #070707;
    transform: rotate(360deg);
}

@media screen and (max-width: 768px) {
    .overlay-close-button {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

.cookie-popup-container {
    position: fixed;
    bottom: 30px;
    right: -100%;
    display: flex;
    align-items: center;
    background-color: #06211f;
    color: #fff;
    max-width: 543px;
    z-index: 9999;
    transition: right 0.5s ease-in-out;
}

.cookie-popup-container.show {
    right: 30px;
}

.cookie-popup-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: #e9d0b0;
    padding-left: 30px;
}

.cookie-popup-icon:before {
    font-family: "sufi-icon-font";
    content: "\e80b";
}

.cookie-popup-text {
    font-family: "Jost", sans-serif;
    font-weight: 200;
    font-size: 16px;
    padding: 15px 20px;
    line-height: 1.4;
    color: #e9d0b0;
}

.cookie-popup-link {
    color: #e9d0b0;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-popup-link:hover {
    color: #e9d0b0;
}

.cookie-popup-button {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
    background-color: #fff0;
    color: #fff;
    border: 1px solid #fff;
    padding: 25px 25px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 30px;
    text-transform: uppercase;
}

.cookie-popup-button:hover {
    background-color: #d39546;
    border-color: #d39546;
}

@media (max-width: 768px) {
    .cookie-popup-container {
        flex-direction: column;
        width: 70%;
        max-width: none;
        bottom: 15px;
        align-items: flex-start;
    }

    .why-sufi-content {
        margin: 20px;
    }

    .cookie-popup-container.show {
        right: 15%;
    }

    .cookie-popup-icon {
        width: 100%;
        padding: 15px 25px;
        justify-content: flex-start;
    }

    .cookie-popup-text {
        padding: 15px 25px;
    }

    .cookie-popup-button {
        margin: 0 0 15px 25px;
    }

    .video-text {
        padding-top: 80px;
    }
}

.menu-last-info {
    background-color: #fff;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.last-top {
    font-family: "Fraunces", serif;
    font-weight: 350;
    color: #331d0c;
    font-variation-settings: "WONK"0;
    font-style: italic;
    text-align: left;
    font-size: 36px;
    padding-bottom: 30px;
    letter-spacing: -2px;
}

.last-desc {
    font-family: "Jost", serif;
    font-weight: 250;
    color: #331d0c;
    font-size: 20px;
}

.qr-text {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    border: 1px solid #e9d0b047;
    border-radius: 15px;
    align-items: center;
    margin-top: 50px;
    margin-left: 50px;
}

.qr-text i {
    color: #e9d0b0;
    font-size: 30px;
}

.qr-text h2,
.qr-text i {
    transition: transform 0.3s ease;
}

.qr-text:hover h2,
.qr-text:hover i {
    transform: translateX(10px);
}

@media screen and (max-width: 576px) {
    .food-details-section {
        padding: 10px;
    }
}

#dogumgunu {
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #331d0c;
    margin: 0;
    max-width: 520px;
}

.back-to-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e9d0b0;
    color: #331d0c;
    position: fixed;
    bottom: 30px;
    right: 86px;
    z-index: 99;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.back-to-top-button.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}

.back-to-top-button button {
    font-size: 24px;
    background-color: #fff0;
    border: none;
}

@media (max-width: 767px) {
    .back-to-top-button {
        right: 24px;
    }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e9d0b0;
    color: #fff;
    position: fixed;
    bottom: 30px;
    left: 56px;
    z-index: 998;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
}

.whatsapp-button:hover {
    background-color: #d39546;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

.whatsapp-button i {
    font-size: 34px;
    color: #331d0c;
}

.test-video {
    display: none;
}

@media (max-width: 767px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 0;
        left: auto;
        right: 24px;
        top: 50%;
    }

    .whatsapp-button i {
        font-size: 24px;
    }

    .reservation-button {
        padding: 10px;
        width: 50px;
        height: 50px;
    }

    .reservation-button button {
        font-size: 22px;
    }

    .qr-button {
        padding: 10px;
        width: 50px;
        height: 50px;
    }

    .user-button {
        padding: 10px;
        width: 50px;
        height: 50px;
    }

    .qr-button i {
        font-size: 25px;
    }

    .user-button i {
        font-size: 15px;
    }

    .back-to-top-button {
        width: 50px;
        height: 50px;
    }

    .logos-sufi {
        width: 80%;
    }

    .test-video {
        display: block;
    }

    .slide-video {
        height: 100%;
        object-fit: contain;
    }
}

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

.icon-wrapper3 {
    width: 48px;
    height: 48px;
    border: 1px solid #e9d0b0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ikon3 {
    color: #e9d0b0;
    font-size: 24px;
    font-family: "sufi-icon-font";
    font-style: normal;
}

.social-p {
    color: #e9d0b0;
}

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

    .header-title {
        padding-bottom: 20px;
    }

    .background-image {
        display: none;
    }

    .right-section span {
        display: none;
    }

    .slider-content {
        display: none;
    }

    .phone-button {
        margin-top: 20px;
    }

    .reservation-form {
        margin-top: 20px;
    }

    .reservation-content {
        gap: 20px;
    }

    .reservation-left2 {
        background-color: #0c332f;
        padding: 20px;
    }

    .form-row {
        gap: 0;
    }

    .right-image {
        border-radius: 50px;
    }

    .cont-ver2 {
        padding: 0;
    }

    .call-text2 {
        color: #fff;
    }

    .phone-number2 {
        color: #fff;
    }
}

.food-info-slider-section {
    background-color: #fff0;
}

.food-info-slider-progress-bar {
    background-color: #e9d0b0;
}

.food-info-slider-progress {
    background-color: rgb(255 255 255 / 0.1);
}

.food-info-slide {
    position: relative;
    overflow: hidden;
}

.food-info-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff0;
    transition: background 0.3s ease-in-out;
}

.food-info-slide:hover::before {
    background: rgb(0 0 0 / 0.5);
}

.food-info-slide {
    padding: 0;
}

.overlay2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.food-info-slide:hover .overlay2 {
    opacity: 1;
}

.icon-instagram {
    font-size: 40px;
    color: #fff;
}

.nav-links2 {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #06211f;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999999999;
    overflow-y: auto;
    padding-top: 20px;
}

.nav-links2.active {
    right: 0;
    box-shadow: -10px 0 30px rgb(0 0 0 / 0.25);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.close-menu {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.close-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e9d0b0;
    top: 50%;
    left: 0;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
}

.menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.nav-links2 a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 10px;
}

.nav-links2 a:hover,
.nav-links2 a.active {
    background-color: rgb(233 208 176 / 0.1);
    color: #e9d0b0;
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #e9d0b0;
}

.link-text {
    flex: 1;
}

.menu-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgb(255 255 255 / 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 0.1);
    color: #e9d0b0 !important;
    margin: 0 8px;
    font-size: 18px !important;
    padding: 0 !important;
}

.social-icon:hover {
    background-color: #e9d0b0 !important;
    color: #06211f !important;
}

.menu-language {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-link {
    color: rgb(255 255 255 / 0.7) !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    margin: 0 !important;
    border-radius: 4px;
}

.lang-link.active {
    color: #e9d0b0 !important;
    background-color: transparent !important;
    font-weight: 700;
}

.lang-separator {
    color: rgb(255 255 255 / 0.3);
    margin: 0 5px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4,
.blog-detail-content h5,
.blog-detail-content h6 {
    color: #331d0c;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    margin: 0 auto;
}

.user-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-popup-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.user-popup-container {
    background: #fff;
    border-radius: 10px;
    width: 150vh;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.3);
}

.user-popup-overlay.active .user-popup-container {
    transform: scale(1);
}

.user-form-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.user-form-close-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

@media (max-width: 768px) {
    .user-popup-container {
        width: 95%;
        max-height: 95vh;
    }

    .popup-formu {
        gap: 20px;
        padding: 20px;
    }
}

.user-popup-container::-webkit-scrollbar {
    width: 6px;
}

.user-popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.user-popup-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.user-popup-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.popup-formu {
    padding-top: 25px;
    padding-bottom: 25px;
}

.popup-reservation {
    padding-bottom: 0;
}

/* Rezervasyon Detay Sayfası Stilleri */
.reservation-detail-section {
    background-color: #0c332f;
    padding: 200px 0;
    min-height: 100vh;
    padding-bottom: 100px;
}

.reservation-detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.reservation-success-header {
    text-align: center;
    margin-bottom: 60px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
    color: #fff;
    font-size: 40px;
}

/* Icon sınıfları */
.icon-check::before {
    content: "✓";
    font-weight: bold;
}

.icon-loading::before {
    content: "⏳";
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.success-title {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 300;
    color: #e9d0b0;
    margin-bottom: 20px;
    font-variation-settings: "WONK"0;
}

.success-message {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.reservation-details-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.details-title {
    font-family: "Fraunces", serif;
    font-size: 32px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 30px;
    text-align: center;
    font-variation-settings: "WONK"0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background-color: #e9d0b0;
    transform: translateY(-2px);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background-color: #331d0c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: #e9d0b0;
    font-size: 18px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #331d0c;
}

.message-item {
    grid-column: 1 / -1;
}

.reservation-info {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.info-text {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

.reservation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-edit,
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-edit {
    background-color: #331d0c;
    color: #fff;
    border: 2px solid #331d0c;
}

.btn-edit:hover {
    background-color: #e9d0b0;
    color: #331d0c;
    transform: translateY(-2px);
}

.btn-home {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-home:hover {
    background-color: #331d0c;
    color: #fff;
    transform: translateY(-2px);
    border: 2px solid #331d0c;
}

.contact-info-section {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 20px;
    font-variation-settings: "WONK"0;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #f8f9fa;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background-color: #e9d0b0;
    transform: translateY(-2px);
}

.contact-method i {
    color: #331d0c;
    font-size: 20px;
}

.contact-method span {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #331d0c;
}

/* Rezervasyon Düzenleme Sayfası Stilleri */
.reservation-edit-section {
    background-color: #0c332f;
    padding: 100px 0;
    min-height: 100vh;
}

/* Bilgi Talep Detay Sayfası Stilleri */
.info-detail-section {
    background-color: #0c332f;
    padding: 200px 0;
    min-height: 100vh;
    padding-bottom: 100px;
}

.info-success-header {
    text-align: center;
    margin-bottom: 60px;
}

.info-details-card {
    background-color: #fbf4ec;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Bilgi Talep Düzenleme Sayfası Stilleri */
.info-edit-section {
    background-color: #0c332f;
    padding: 100px 0;
    min-height: 100vh;
}

.info-edit-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-edit-form {
    background-color: #fbf4ec;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.current-info-summary {
    background-color: #fbf4ec;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.current-info-summary .summary-title {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 20px;
    font-variation-settings: "WONK"0;
}

.current-info-summary .summary-content p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: #331d0c;
    margin-bottom: 10px;
    line-height: 1.6;
}

.reservation-edit-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.edit-header {
    text-align: center;
    margin-bottom: 40px;
}

.edit-title {
    font-family: "Fraunces", serif;
    font-size: 48px;
    font-weight: 300;
    color: #e9d0b0;
    margin-bottom: 20px;
    font-variation-settings: "WONK"0;
}

.edit-subtitle {
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.reservation-edit-form {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-update,
.btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-update {
    background-color: #331d0c;
    color: #fff;
    border: 2px solid #331d0c;
}

.btn-update:hover {
    background-color: #e9d0b0;
    color: #331d0c;
    transform: translateY(-2px);
}

.btn-cancel {
    background-color: transparent;
    color: #666;
    border: 2px solid #666;
}

.btn-cancel:hover {
    background-color: #666;
    color: #fff;
    transform: translateY(-2px);
}

.current-reservation-summary {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-family: "Fraunces", serif;
    font-size: 24px;
    font-weight: 300;
    color: #331d0c;
    margin-bottom: 20px;
    text-align: center;
    font-variation-settings: "WONK"0;
}

.summary-content p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #331d0c;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-content p:last-child {
    border-bottom: none;
}

/* Responsive Tasarım */
@media (max-width: 768px) {

    .reservation-detail-content,
    .reservation-edit-content {
        padding: 0 15px;
    }

    .success-title,
    .edit-title {
        font-size: 36px;
        color: #e9d0b0;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reservation-actions,
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .btn-edit,
    .btn-home,
    .btn-update,
    .btn-cancel {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .reservation-details-card,
    .reservation-edit-form,
    .current-reservation-summary {
        padding: 25px;
    }

    .form-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {

    .success-title,
    .edit-title {
        font-size: 28px;
        color: #e9d0b0;
    }

    .success-message,
    .edit-subtitle {
        font-size: 16px;
        color: #fff;
    }

    .details-title,
    .summary-title {
        font-size: 20px;
    }

    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .reservation-details-card,
    .reservation-edit-form,
    .current-reservation-summary {
        padding: 20px;
    }
}