@font-face {
    font-family: 'Fraunces Wonky';
    src: url('../font/wonky.woff2') format('woff2'),
         url('../font/wonky.woff') format('woff');
    font-weight: normal;
    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: normal;
    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: white;
    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;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.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: rgba(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;
    }
}

/*Mobile Menü */
.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 rgba(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 i {
font-family: 'sufi-icon-font';
font-style: normal;
font-size: 28px;
margin-bottom: 15px;
margin-top: 6px;
}

.reservation-button i:before {
content: '\e818';
}

.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 i {
font-size: 27px;
} 

.qr-button i {
font-family: 'sufi-icon-font';
font-style: normal;
font-size: 40px;
}

.qr-button i:before {
content: '\e81c';
}

@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 i {
        margin: 0;
    }
    .fixed-side-buttons {
        top: 35%;
        right: 24px;
    }
}

/* Anasayfa Menü Bölümü */
.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: rgba(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;
    }

    
}
/* Hakkımızda Bölümü */
.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: transparent;
    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: 0px;
    }

    .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; /* Ekranın tamamını kaplar */
    background: url('../img/back.webp') no-repeat center center;
    background-size: contain; /* Resmi tamamen sığdırır */
    background-position: center; /* Merkeze hizalar */
    background-repeat: no-repeat;
    z-index: 0;
   
}

.reservation-section {
    position: relative;
    padding-bottom: 150px;
    background-color: white;
    

}

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

/* Sol Alan Stilleri */
.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;
	color: white;
}

.call-text {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 400;
}

.phone-number {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-weight: 400;
	color: white;
	text-decoration: none;
}

/* Form Alanı Stilleri */
.reservation-form {
    flex: 1;
    background: #fff;
    border-radius: 48px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(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: #ff0000;
    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: transparent;
    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;
}

/* Varsayılan checkbox'ı gizle */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Checkmark kutusu */
.checkmark {
    width: 20px;
    height: 20px;
    background-color: transparent;
    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;
}

/* Tik işareti */
.checkmark::after {
    content: '\2713'; /* Unicode checkmark */
    font-size: 14px;
    color: white;
    display: none; /* Varsayılan olarak gizli */
}

/* Checkbox işaretlendiğinde */
.checkbox-container input:checked + .checkmark {
    background-color: #331D0C;
    border-color: #331D0C;
}

/* Checkbox işaretlendiğinde tik işaretini göster */
.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: rgba(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: rgba(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 0px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(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: white;
}

.instagram-link:hover span {
    color: white;
}

.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: transparent;
    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: #E9D0B0;
    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: rgba(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: 0px;
        text-align: center;
    }

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

    .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;
    
}


/* Hakkımızda Sayfası */


.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: #ffffff;
    font-variation-settings: "WONK" 0;
}

.about-title2 {
    font-family: 'Fraunces', serif;
    font-size: 96px;
    font-weight: 300;
    color: #ffffff;
    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: #ffffff;
    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;
}

/* Responsive Styles */
@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;
    }
}

@media screen and (max-width: 576px) {
    .about-banner {
        height: 200px;
    }
   
    .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: rgba(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: rgba(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;
}

/* Responsive Styles */
@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: #ffffff;
    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: #ffffff;
    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: #ffffff;
    letter-spacing: 1px;
    padding: 15px 30px;
    border: 1px solid #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Responsive Styles */
@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: white;
  }
  
  .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: white;
    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;
  }
  
  /* Responsive Design */
  @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: white;
}

.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: rgba(233, 208, 176, 0.2);
    color: #331D0C;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(233, 208, 176, 1);
}

.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;
}

/* Responsive Design */
@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 rgba(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: white;
}

.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;
}

/* Border for first two items */
.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;
}

/* Responsive Design */
@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; /* Tüm içeriği eşit dağıt */
    text-align: center;
    height: 100%; /* Tüm öğelerin eşit yükseklikte olmasını sağla */
    padding: 0px 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;
}

/* Responsive Design */
@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: #ffffff;
    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, rgba(12, 39, 51, 0.8) 0%, rgba(12, 39, 51, 0) 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: #FFFFFF;
    margin-bottom: 10px;
}

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

/* Responsive */
@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: #FFFFFF;
    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;
}

/* Responsive */
@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: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

/* SAĞ TARAF */
.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;
}

/* BAŞLIKLAR */
.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;
}

/* PARAGRAFLAR */
.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;
}

/* --- RESPONSIVE AYARLAMALAR --- */

/* 1024px ve altı: İçeriğin %100 genişlikte olması */
@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;
    }
}

/* 768px ve altı: İçeriği tamamen tek sütun yap */
@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;
    }
}

/* 480px ve altı: Küçük ekranlar için optimize */
@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: white;
}

.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: #FFFFFF;
    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: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

/* Responsive */
@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: white;
}

.food-info-slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.food-info-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

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

.food-info-slide {
    max-width: 400px;
    flex: 0 0 auto;
    background-color: rgba(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: rgba(51, 29, 12, 0.1);
    border-radius: 2px;
    margin-top: 30px;
    position: relative;
}

.food-info-slider-progress-bar {
    height: 100%;
    width: 20%; /* This will change with JavaScript */
    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;
    }
}

/* Rezervasyon Butonu Pop Up */

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

/* Popup İçeriği */
.popup-content {
    background: white;
    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; /* Daha iyi görünüm için yükseklik ayarı */
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 20px; /* Daha küçük radius */
        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%; /* Form inputlarını tam genişlet */
        margin-bottom: 10px;
    }
    .checkmark {
        width: 40px;
    }
    .reservation-form2 h2 {
        font-size: 48px;
    }
    .name-row {
        flex-direction: column;
        gap: 0px;
    }
    .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;
}

/* Responsive adjustments */
@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: white;
    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);
}

/* Responsive ayarlamalar */
@media screen and (max-width: 768px) {
    .overlay-close-button {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
 /* Cookie Popup Styles */
 .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: transparent;
    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;
}

/* Responsive Styles */
@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: white;
    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); /* İç elemanları da kaydır */
}

@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: 0px;
    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 rgba(0, 0, 0, 0.1);
}

.back-to-top-button i {
    font-size: 24px;
}

/* Mobil cihazlar için */
@media (max-width: 767px) {
    .back-to-top-button {
        right: 24px;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 140px; /* Yukarı çık butonunun hemen üstünde yer alır */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #E9D0B0; /* Tema ile uyumlu açık bej */
    color: #331D0C; /* Tema ile uyumlu koyu kahverengi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 800;
}

.whatsapp-button:hover,
.whatsapp-button:focus {
    background-color: #D39546; /* Hover'da tema ile uyumlu sıcak turuncu */
    color: #331D0C;
    transform: translateY(-2px);
    outline: 2px solid #E9D0B0;
    outline-offset: 2px;
}}

.whatsapp-button i {
    font-size: 34px;
    color: #331D0C;
}
.test-video {
    display: none
}
/* Mobil cihazlar için */
@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 i {
        font-size: 16px;
    }

    .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: 0px
    }
    

    .right-image {
        border-radius: 50px;
    }
    .cont-ver2 {
        padding: 0;
    }
    .call-text2 {
        color: white;
    }
    .phone-number2 {
        color: white;
    }
}
.food-info-slider-section {
    background-color: transparent;
}
.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: rgba(0, 0, 0, 0);
transition: background 0.3s ease-in-out;
}

.food-info-slide:hover::before {
background: rgba(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: white;
}

.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 rgba(0, 0, 0, 0.25);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(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: white;
    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: rgba(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 rgba(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: rgba(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: rgba(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: rgba(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;
    /* text-align: center; */
}
.user-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(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: white;
    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 rgba(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: 0px;
}

/* Gereksiz boşlukları düzelt */
.about-banner {
    margin-bottom: 30px !important;
}

.about-content {
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
}

.why-sufi {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.why-sufi-content {
    margin-bottom: 30px !important;
}

.events {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.video-section {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.instagram-section {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.testimonials {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/* Büyük boşlukları kaldır */
section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Footer öncesi boşluğu azalt */
footer {
    margin-top: 50px !important;
}



.about-banner {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}



.about-banner {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

