/* Reset and Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

/* Custom Cursor Trail Effect */
body {
    position: relative;
}

.cursor-trail {
    position: fixed;
    top: 10px;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #a7a653, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px #a7a653;
}

.cursor-trail::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(167, 166, 83, 0.3), transparent);
    border-radius: 50%;
    animation: pulse 1.5s infinite reverse;
}

.cursor-zeytin {
    position: fixed;
    top: 10px;
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.9;
    transition: transform 0.1s ease;
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}


@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

/* Hover effects */
a:hover ~ .cursor-trail,
button:hover ~ .cursor-trail,
.nav-link:hover ~ .cursor-trail {
    background: radial-gradient(circle, #bbb976, transparent);
    box-shadow: 0 0 20px #bbb976;
    animation: pulse 0.8s infinite;
}

/* Falling Zeytin Effect */
.falling-zeytin {
    position: fixed;
    width: 35px;
    height: 35px;
    background-image: url('../img/z-tek.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 999;
    opacity: 0.8;
    animation: fall 4s ease-in-out forwards;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translateY(25vh) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(75vh) rotate(270deg) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translateY(120vh) rotate(360deg) scale(0.8);
        opacity: 0;
    }
}

.falling-zeytin:nth-child(odd) {
    animation-duration: 3.5s;
    animation-delay: 0.2s;
    animation-timing-function: ease-in;
}

.falling-zeytin:nth-child(even) {
    animation-duration: 4.5s;
    animation-delay: 0.8s;
    animation-timing-function: ease-out;
}

.falling-zeytin:nth-child(3n) {
    animation-duration: 5s;
    animation-delay: 0.1s;
    animation-timing-function: ease-in-out;
}

/* Branch position for falling effect */
.hero-branch {
    position: relative;
    overflow: visible;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: 170px;
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    left: 60%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    text-transform: uppercase;
    color: #bbb976;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.2rem;
}

.nav-link:hover {
    color: #a7a653;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #a7a653;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-rez{
    background-color: #a7a653 !important;
    padding: 12px 20px !important;
    color: #fff !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    border: 2px solid #a7a653 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(167, 166, 83, 0.3) !important;
}

.nav-rez:hover{
    background-color: transparent !important;
    color: #a7a653 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(167, 166, 83, 0.4) !important;
}

.nav-rez::after {
    display: none !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #a7a653;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #eeeae3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    background-color: #a7a653;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #8a8a42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 166, 83, 0.3);
}

.hero-image {
    position: absolute;
    right: 10%;
    top: 78%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.parallax-element {
    transform: translateY(0);
}

/* Hero Tree */
.hero-tree {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.tree-bg {
    max-width: 900px;
    height: auto;
    opacity: 0.9;
}

/* Hero Branch with Wind Animation */
.hero-branch {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.branch-center {
    max-width: 400px;
    height: auto;
    opacity: 0.95;
    animation: windSway 3s ease-in-out infinite;
    transform-origin: center bottom;
}

/* Wind Animation */
@keyframes windSway {
    0%, 100% {
        transform: rotate(-2deg) translateX(-5px);
    }
    50% {
        transform: rotate(2deg) translateX(5px);
    }
}

/* Two Column Section */
.two-column-section {
    background: linear-gradient(180deg, #eeeae3 0%, #a7a652 50%);
    padding: 40px 0;
    min-height: 70vh;
}

.two-column-section .container {
    max-width: 1200px;
    margin:70px auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    height: 100%;
}

.column-left, .column-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.column-right {
    transform: translateX(50px);
}

.column-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.column-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.image-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    max-width: 200px;
    height: auto;
}

.ayrac {
    height: 50px;
    display: block;
    margin: 20px auto;
    width: auto;
}
.p1-main-image {
max-width: 500px;
height: auto;
display: block;
margin: 0 auto;
}

.p1-mart-image {
    max-width: 100%;
    height: 500px;
    border-radius: 15px;
    position: relative;
    top: -73px;
    /*transform: skewY(-2.8deg); */
    display: block;
    z-index: 10;
}

.p2-main-image {
    max-height: 110px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.p2-mart-image {
    max-width: 85%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
   padding-top:30px;
   padding-bottom:30px;
   display: block;
   margin: 0 auto;
}

.text-image-p2 {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.p3-main-image {
    max-height: 110px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.p3-mart-image {
    max-width: 40%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
    display: block;
    margin: 0 auto;
}

.text-image-p3 {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.text-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    opacity: 0.95;
}

.mart-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mart-image:hover {
    transform: scale(1.05);
}

/* Tablolar Section */
@keyframes waveBackground {
    0% {
        background-position: left top;
    }
    50% {
        background-position: left -50px;
    }
    100% {
        background-position: left top;
    }
}

.tablolar-section {
    padding-top: 20px;
    padding-bottom: 20px;
    background-position: center 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../img/z-d.png');
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 300px;
    position: relative;
    background-color: #a7a652;
    width: 100%;
    animation: waveBackground 4s ease-in-out infinite;
}

.tablolar-container {
    margin-top: -30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tablolar-container img {
    width: 100%;
    height: auto;
    display: block;
}

.t-orta-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.t-orta-image {
        width: auto;
        height: auto;
        max-width: 400px;
        opacity: 0;
        animation: fadeIn 2s ease-in-out 1s forwards;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
    
    .t-orta-image {
        max-width: 500px;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Parallax Sections */
.parallax-section {
    min-height: 10vh;
    background-color: #a7a653;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.parallax-content p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

/* Section Variations */
.section-new {
    background-image: linear-gradient(rgba(167, 166, 83, 0.3), rgba(167, 166, 83, 0.3)), url('../img/parallax-bg.jpg');
}

/* Parallax Two Column Section */
.parallax-two-column {
    min-height: 80vh;
    background-image: url('../img/parallax-bg.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -10px;
}

.diagonal-overlay {
    position: absolute;
    top: 120px;
    left: -15%;
    right: -15%;
    background: #a7a652;
    /*transform: skewY(-2.8deg); */
    z-index: 99999;
}

.parallax-two-column .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /*transform: skewY(2.8deg); */
}

.overlay-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    /*transform: skewY(3deg); */
}

.overlay-left, .overlay-right {
    flex: 1;
    color: white;
    text-align: center;
}

.overlay-left h3, .overlay-right h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.overlay-left p, .overlay-right p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Parallax Two Column P2 */
.parallax-two-column-p2 {
    min-height: 80vh;
    background-image: url('../img/parallax-bg.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
    margin-bottom: -10px;
}



.diagonal-overlay-p2 {
    position: absolute;
    top: 120px;
    left: -15%;
    right: -15%;
    background: #a7a652;
    /*transform: skewY(-2.8deg); */
    z-index: 1;

    padding-bottom: 60px;
}

.parallax-two-column-p2 .container-p2 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /*transform: skewY(2.8deg); */
}

/* Parallax Two Column P3 */
.parallax-two-column-p3 {
    min-height: 70vh;
    background-image: url('../img/parallax-bg.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
}

.diagonal-overlay-p3 {
    position: absolute;
    top: 120px;
    left: -15%;
    right: -15%;
    background: #a7a652;
    /*transform: skewY(-2.8deg); */
    z-index: 1;
    padding-bottom: 60px;
}

.parallax-two-column-p3 .container-p3 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
   /* transform: skewY(2.8deg); */
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #a7a652;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.about-image {
    position: relative;
    text-align: center;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-image:hover {
    transform: translateY(-10px);

}

.about-text {
    padding: 2rem;
}

.about-text h2 {
    font-size: 2rem;
    color: #483C19;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    font-style: italic;
}



.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #483C19;
    margin-bottom: 1.5rem;
    text-align: justify;
}



.about-text p:last-child {
    margin-bottom: 0;
}

.about-content-text {
    padding-left: 20px;
    border-left: 2px solid #483C19;
    margin-bottom: 1.5rem;
}

.about-end {
    font-style: italic;
    font-weight: bold;
    color: #483C19;
}

.swiper-button-next, .swiper-button-prev{color:#fff !important}

/* Reservation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    width: 35%;
    max-width: 800px;
    height: 50%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    background-color: #a7a653;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ddd;
}

.modal-body {
    padding: 20px;
    height: calc(100% - 80px);
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    max-width: 100%;
    max-height: 100%;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        height: 50%;
        margin: 25% auto;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-logo img {
        height: 120px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(238, 234, 227, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 20px 0;
        transform: translateX(-50%);
    }

    .nav-menu.active {
        left: 50%;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        display: flex !important;
        cursor: pointer;
        z-index: 1000;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 180px 2rem 2rem;
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none !important;
    }

    .tree-bg {
        max-width: 500px;
    }

    .branch-center {
        max-width: 200px;
    }

    /* Two Column Section Mobile */
    .two-column-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .image-stack {
        gap: 1.5rem;
    }

    .main-image {
        max-width: 50%;
    }
    .mart-image {
        max-width: 100%;
    }

    .text-image {
        max-width: 70%;
    }

    .tablolar-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tablolar-container img {
        width: 150%;
        max-width: 150%;
        margin: 0 auto;
        display: block;
    }
    
    .t-orta-image {
        display: block;
        max-width: 200px;
        width: auto;
        height: auto;
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    /* Parallax Two Column Mobile */
     .parallax-two-column, .parallax-two-column-p2, .parallax-two-column-p3 {
         background-attachment: scroll !important;
         background-position: center center !important;
         background-size: cover !important;
         min-height: 80vh !important;
         
         position: relative !important;
         overflow: visible !important;
     }
     
     .diagonal-overlay, .diagonal-overlay-p2, .diagonal-overlay-p3 {
        /* transform: skewY(-1deg); */
         position: relative !important;
         background-attachment: scroll !important;
         background-position: center center !important;
         background-size: cover !important;
         background-repeat: no-repeat !important;
         left: 0 !important;
         right: 0 !important;
         top: 20px !important;
         width: 100% !important;
         height: auto !important;
         min-height: 50vh !important;
         margin: 20px auto !important;

         transform: none !important;
         overflow: hidden !important;
     }
     





     
     .parallax-two-column .container,
     .parallax-two-column-p2 .container-p2 {
         grid-template-columns: 1fr;
         gap: 2rem;
        /* transform: skewY(1deg); */
         padding: 2rem 1rem;
     }

     .parallax-two-column-p3 .container-p3 {
         display: flex;
         flex-direction: column-reverse;
         gap: 2rem;
         padding: 2rem 1rem;
     }
     

     .p2-main-image{
        max-width: 300px;
    }
    .p3-main-image{
        max-width: 300px;
        width: 175px;
    }
     
     .p1-mart-image {
         max-width: 80%;
         margin: 20px auto;
         top: 0;
         transform: none;
     }
     
     .p2-mart-image {
         max-width: 80%;
         margin: 20px auto;
     }

     .p3-mart-image {
        max-width: 40%;
        margin: 20px auto;
    }

    .parallax-content {
        margin: 0 1rem;
        padding: 2rem;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    /* About Section Mobile */
    .about-section {
        padding: 40px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: left;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    .tablolar-section {
        background-position: center 60px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #a7a652;
    color: #fff;
    margin: 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 500px;
    margin: 0;
    position: relative;
    overflow: visible;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: auto;
}

.qodef-round-borders-wrapper {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.qodef-round-borders-wrapper:hover {
    transform: scale(1.02);
}

.qodef-round-borders-wrapper-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.qodef-round-borders-wrapper-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.qodef-round-borders-wrapper:hover .qodef-round-borders-wrapper-inner img {
    transform: scale(1.1);
}

.swiper-button-next,
.swiper-button-prev {
    color: #d4af37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #d4af37;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #d4af37;
}

/* Footer */
.footer {
    background: #eeeae3;
    color: #333;
    padding: 60px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 10px;
}

.footer-section h3 {
    color: #a7a652;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: #a7a652;
    width: 20px;
}

.working-hours p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.working-hours i {
    margin-right: 10px;
    color: #a7a652;
    width: 20px;
}

.social-links i {
    margin-right: 8px;
    color: #a7a652;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.social-link:hover {
    color: #a7a652;
}

.footer-text {
    padding-bottom: 20px;
    text-align: center;
    color: #666;
}


.footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

/* Responsive Design for Gallery and Footer */
@media (max-width: 768px) {
    .gallery-container {
        padding: 20px;
    }
    
    .swiper-container {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    .qodef-round-borders-wrapper {
        width: 90%;
        max-width: none;
        height: auto;
        margin: 10px auto;
        aspect-ratio: 1;
    }

    .qodef-round-borders-wrapper-inner {
        width: 100%;
        height: 100%;
    }

    .qodef-round-borders-wrapper-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Mobilde blur efektini kaldırma */
    .gallery-section .swiper-container:hover .swiper-slide {
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .gallery-section .swiper-container .swiper-slide:hover {
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Hover efektlerini de kaldırma */
    .qodef-round-borders-wrapper:hover {
        transform: none;
    }

    .qodef-round-borders-wrapper:hover .qodef-round-borders-wrapper-inner img {
        transform: none;
    }

    /* Footer düzenlemeleri */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 5px 0;
    }

    .contact-info i {
        margin-right: 0;
    }

    .working-hours {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

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

    .footer-bottom {
        text-align: center;
        padding: 15px 0;
    }
}

/* Smooth Scrolling Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Section Styles */
section {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}



/* Additional mobile optimizations */
@media (max-width: 480px) {
    .parallax-two-column .container,
    .parallax-two-column-p2 .container-p2,
    .parallax-two-column-p3 .container-p3 {
        padding: 30px 0.5rem;
        gap: 1.5rem;
    }
    
    .p1-main-image {

        max-width: 360px;
    }
    .p2-main-image {
        max-width: 250px;
    }
    .p3-main-image {
        margin-top: 50px;
        max-width: 150px;
    }


    
    
    .text-image, .text-image-p2, .text-image-p3 {
        max-width: 90%;
    }

    /* Küçük ekranlar için galeri düzenlemeleri */
    .gallery-container {
        padding: 15px;
    }

    .qodef-round-borders-wrapper {
        width: 95%;
        margin: 8px auto;
    }

    .swiper-container {
        min-height: 250px;
    }
}

/* Parallax Hero Sections */
.parallax-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #a7a652;
}

.parallax-hero:nth-child(1) figure { 
    background-image: url('../img/slider-1.png');
}
.parallax-hero:nth-child(2) figure { 
    background-image: url('../img/slider-2.png');
}
.parallax-hero:nth-child(3) figure { 
    background-image: url('../img/slider-3.png');
}
.parallax-hero:nth-child(4) figure { 
    background-image: url('../img/p1-res.png');
}

.parallax-hero-inner {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
}

@supports (-webkit-overflow-scrolling: touch) {
    .parallax-hero-inner {
        clip: unset;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.parallax-hero figure {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.parallax-hero__container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}


.parallax-hero__text-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    width: 100%;
}

.parallax-hero__bg-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.parallax-hero__main-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.parallax-hero__divider {
    max-width: 300px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.parallax-hero__text-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.parallax-hero__text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 3rem;
}

.parallax-hero__title {
    color: white;
    font-family: 'Raleway', serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.125rem;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.parallax-hero__text p {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.parallax-hero__highlight {
    color: #a7a653 !important;
    font-weight: 600;
    font-size: 1.3rem !important;
}

@media (min-width: 1200px) {
    .parallax-hero__title {
        font-size: 6rem;
    }
}

/* Parallax Content Section */
.parallax-content {
    position: relative;
    margin: 0 auto 8rem;
    padding: 2rem;
    background-color: white;
    z-index: 100;
}

.parallax-content:before {
    content: '';
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    z-index: 99;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.parallax-content__inner {
    margin: 0 auto;
    max-width: 700px;
}

.parallax-content__inner > * + * { 
    margin-top: 1.5rem; 
}

.parallax-content__inner > blockquote {  
    margin: 3rem 0; 
}

.parallax-content__title {
    font-family: 'Raleway', serif;
    font-size: 3rem;
    line-height: 1.25;
    letter-spacing: -0.125rem;
    text-align: center;
    color: #a7a653;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .parallax-content__title {
        font-size: 4rem;
    }
}

.parallax-content__author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    width: 100%;
    font-family: 'Raleway', serif;
    font-size: 1.5rem;
    letter-spacing: -0.125rem;
    text-align: center;
    color: #a7a653;
}

.parallax-content__author:before,
.parallax-content__author:after {
    content: '';
    flex: 1;
    height: 2px;
    background-color: #a7a653;
}

.parallax-content__author:before { 
    margin-right: 1rem; 
}

.parallax-content__author:after  { 
    margin-left: 1rem; 
}

.parallax-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
}

.parallax-content blockquote {
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Raleway', serif;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.05rem;
    color: #a7a653;
    font-style: italic;
}

.parallax-content blockquote:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #a7a653;
    border-radius: 60px;
}

/* Mobile responsive for parallax */
@media (max-width: 768px) {
    .parallax-hero__container {
        flex-direction: column;
    }
    
    .parallax-hero__column-left,
    .parallax-hero__column-right {
        padding: 1rem;
    }
    
    .parallax-hero__text-stack {
        gap: 15px;
        max-width: 400px;
    }
    
    .parallax-hero__main-image {
        max-width: 300px;
    }
    
    .parallax-hero__text-image {
        max-width: 350px;
    }
    
    .parallax-hero__divider {
        max-width: 250px;
    }
    
    .parallax-hero__bg-image {
        max-height: 60vh;
    }
    
    .parallax-hero__title {
        font-size: 3rem;
    }
    
    .parallax-hero__text-content {
        padding: 2rem;
    }
    
    .parallax-hero__text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .parallax-hero__column-left,
    .parallax-hero__column-right {
        padding: 0.5rem;
    }
    
    .parallax-hero__text-stack {
        gap: 10px;
        max-width: 300px;
    }
    
    .parallax-hero__main-image {
        max-width: 250px;
    }
    
    .parallax-hero__text-image {
        max-width: 280px;
    }
    
    .parallax-hero__divider {
        max-width: 200px;
    }
    
    .parallax-hero__bg-image {
        max-height: 50vh;
    }
    
    .parallax-hero__title {
        font-size: 2.5rem;
    }
    
    .parallax-hero__text-content {
        padding: 1.5rem;
    }
    
    .parallax-hero__text p {
        font-size: 1rem;
    }
    
    .parallax-hero__highlight {
        font-size: 1.1rem !important;
    }
}

/* Menu Page Specific Styles */
.menu-page {
    background-color: #eeeae3;
    min-height: 100vh;
    padding-top: 220px;
    padding-bottom: 20px;
}

.menu-header {
    text-align: center;
    padding: 40px 0 60px;
}

.menu-header h1 {
    font-size: 3.5rem;
    color: #a7a653;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.menu-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 40px;
}

.menu-accordion {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.menu-category {
    border-bottom: 1px solid #eee;
}

.menu-category:last-child {
    border-bottom: none;
}

.category-header {
    background: #a7a653;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-header:hover {
    background: #8a8a42;
}

.category-header h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.category-icon {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-header.active .category-icon {
    transform: rotate(180deg);
}

.category-content {
    padding: 30px;
    display: none;
}

.category-content.active {
    display: block;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: start;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    padding-bottom: 15px;
}

.menu-item:not(:last-child) {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #a7a653;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.item-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent 10%, #a7a653 50%, transparent 90%);
    margin: 0 15px;
    min-height: 300px;
    align-self: stretch;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-logo img {
        height: 120px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(238, 234, 227, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 20px 0;
        transform: translateX(-50%);
    }

    .nav-menu.active {
        left: 50%;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        display: flex !important;
        cursor: pointer;
        z-index: 1000;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu-page {
        padding-top: 200px;
    }

    .menu-header h1 {
        font-size: 2.5rem;
    }

    .menu-container {
        padding: 0 1rem;
    }

    .menu-items {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .menu-column {
        display: contents;
    }

    .category-header {
        padding: 20px;
    }

    .category-header h2 {
        font-size: 1.4rem;
    }

    .category-content {
        padding: 20px;
    }

    .divider {
        display: none;
    }
    
    .menu-item {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .menu-item:last-child {
        border-bottom: 1px solid #eee;
    }
}

/* Gallery Hover Effect */
.gallery-section .swiper-slide {
    transition: all 0.3s ease;
}

.gallery-section .swiper-container:hover .swiper-slide {
    filter: blur(3px);
    transform: scale(0.95);
    opacity: 0.7;
}

.gallery-section .swiper-container .swiper-slide:hover {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
}

/* Chrome için normal rotasyon */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    @supports (background: -webkit-named-image(i)) {
        .t-orta-image {
            transform: rotate(0deg) !important;
            -webkit-transform: rotate(0deg) !important;
        }
    }
}

/* Safari özel fix - t-orta.png yatay görünme sorunu için */
@supports (-webkit-hyphens:none) {
    .t-orta-image {
        transform: rotate(-90deg) !important;
        -webkit-transform: rotate(-90deg) !important;
    }
}