/*
Theme Name: Akın Yelkovan  
Author: Akın Yelkovan

Version: 1.0
Text Domain: akinyelkovan
*/
* { margin:0; padding:0; box-sizing:border-box; cursor: none; }
html { overflow-x: hidden; max-width: 100%; }
body { font-family: "Outfit", sans-serif; background:#D7CFBC; overflow-x: hidden; max-width: 100%; color: #333; }

#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #c7b89a;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.slide-content h1 span{
font-family: 'Montserrat', serif; 
font-style: italic; 
font-weight:300;
}

#intro-overlay {
    position: fixed;
    inset: 0;
    background: #615E53;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.intro-logo {
    overflow: hidden;
    text-align: center;
}

.intro-logo img {
    display: block;
  
    transform: translateY(100%);
    width:250px;
    height:auto;
}

.projebaslik{
font-size:40px;
color:#615E53;
font-weight:600;
}


.header {
padding: 30px 60px;
transform: translateY(-120%);
opacity: 0;
}


.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu {
    display: flex;
    gap: 35px;
    list-style: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #777;
}

.menu.left { justify-content: flex-start; }
.menu.right { justify-content: flex-end; }

.menu li {
    position: relative;
    overflow: hidden;
    padding: 5px 0;
    font-size:14px;
}

 .menu li a{
    text-decoration:none;
    color:#777;
 }

.menu li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c7b89a;
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    border-radius:100px;
}
.menu li:hover::before { transform: translateX(0); }

.logo { text-align: center;  }
.logo strong { display: block; font-size: 16px; letter-spacing: 4px; margin-top: 5px; }
.logo span { font-size: 10px; letter-spacing: 5px; color: #aaa; text-transform: uppercase; }
.logo a img{
width:150px;
height:auto;
}
.hero-wrapper {
    background: url('https://www.akinyelkovan.com/wp-content/uploads/2026/01/bgbgb.png');
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero-wrapper::after {
content: "";
position: absolute;
right: -80px;   
bottom: -40px;
width: 400px;   
height: 400px;
background: url('https://www.akinyelkovan.com/wp-content/uploads/2026/01/yelkovan-logo-2.svg') no-repeat;
background-size: contain;
opacity: 1;  
pointer-events: none; 
z-index: 1;
}

.slider {
    margin: 0 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 65vh;
    background: #000;
    transform: scale(0.9);
    opacity: 0;
}

.slider,
.slogan {
position: relative;
z-index: 2;
}

.slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1;
}

.slide.active { 
    opacity: 1;
    visibility: visible; 
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    z-index: 1;
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    padding-bottom:50px;
    color: #fff;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.btn:hover { background: #ffffff5a; color: white; }

.dots {
    position: absolute;
    right: 50px;
    bottom: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot-wrapper { position: relative; width: 12px; height: 12px;  }
.dot-base { position: absolute; inset: 0; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%; }
.dot-fill-indicator { position: absolute; width: 12px; height: 12px; background: #c7b89a; border-radius: 50%; pointer-events: none; z-index: 11; }

.slogan {
padding: 50px 60px;
color: #D7CFBC;
font-size: 38px;
line-height: 1.2;
max-width: 1100px;
overflow: hidden;
  font-family: "Petrona", serif;
}

.slogan span {
display: inline-block;

}


@media (min-width: 769px) and (max-width: 1025px) {
.slider {
margin: 0 40px;
height: 70vh;
transform: scale(0.95);
}

.slide-content {
padding-left: 50px;
padding-bottom: 45px;
max-width: 85%;
}

.slide-content h1 {
font-size: 52px;
margin-bottom: 25px;
}

.btn {
padding: 16px 34px;
font-size: 11.5px;
gap: 12px;
}

.dots {
right: 35px;
bottom: 32px;
}

.slogan {
padding: 45px 50px;
font-size: 34px;
max-width: 95%;
}

.hero-wrapper::after {
width: 320px;
height: 320px;
right: -70px;
bottom: -35px;
opacity: 0.8;
}

.header {
padding: 25px 40px;
}

.menu {
gap: 25px;
font-size: 12px;
}
}

@media (min-width: 1024px) and (max-width: 1200px) {
.menu {
font-size: 12px;
}
.menu li a {
font-size: 11px;
}
}

@media (max-width: 768px) {

.slider {
margin: 0 20px;
height: 80vh;
transform: scale(1);
}

.slide-content {
padding-left: 30px;
padding-bottom: 40px;
max-width: 90%;
}

.slide-content h1 {
font-size: 42px;
margin-bottom: 20px;
}

.btn {
padding: 14px 28px;
font-size: 11px;
gap: 10px;
}

.dots {
right: 20px;
bottom: 25px;
}

.slogan {
padding: 40px 30px;
font-size: 30px;
max-width: 100%;
}

.hero-wrapper::after {
width: 260px;
height: 260px;
right: -60px;
bottom: -30px;
opacity: 0.6;
}
}


@media (max-width: 480px) {

.slider {
height: 50vh;
margin: 0 15px;
}

.slide {
align-items: flex-end;
}

.slide-bg::after {
background: linear-gradient(
to top,
rgba(0,0,0,0.75),
transparent 60%
);
}

.slide-content {
padding-left: 20px;
padding-bottom: 30px;
}

.slide-content h1 {
font-size: 30px;
line-height: 1.15;
}

.btn {
padding: 12px 22px;
font-size: 10px;
letter-spacing: 1.5px;
}

.dots {
right: 15px;
bottom: 20px;
gap: 10px;
}

.slogan {
padding: 30px 20px;
font-size: 24px;
line-height: 1.3;
}

.hero-wrapper::after {
width: 180px;
height: 180px;
right: -40px;
bottom: -20px;
opacity: 0.4;
}
}


.about-section { padding: 120px 60px; }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-label { font-size: 12px; letter-spacing: 2px; color: #615E53; display: block; margin-bottom: 20px; font-weight:600}
.about-text h2 { font-size: 44px; line-height: 1.25; color: #5b554b; font-weight: 400; }
.about-text h2 strong { font-weight: 700; }
.about-text p { margin-top: 24px; font-size: 16px; line-height: 1.8; color: #777; max-width: 520px; }
.about-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 40px; padding: 16px 36px; border-radius: 40px; background: #615E53; color:white; text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
.about-btn:hover { background: #c7b89a; }
.about-image { position: relative; height: 560px; overflow: hidden; border-radius: 10px 90px 10px 10px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); }
.about-line { width: 220px; height: 3px; background: #615E53; margin: 32px 0; position: relative; left: calc(-8vw + 60px); transform: scaleX(0); transform-origin: left; }



.memory-section { position: relative; background: linear-gradient(135deg, #615E53, #615E53); border-radius: 0 150px 0 0; padding: 80px 80px 100px;  margin-bottom: 0; }
.leaf { position: absolute; width: 350px; opacity: 1; z-index: 5; pointer-events: none; }
.leaf.left { left: -60px; top: 100px; z-index:0; }
.leaf.right { right: -50px; top: 20px; }
.memory-inner { position: relative; z-index: 2; }
.memory-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; color: #efeede; margin-bottom: 60px; }
.memory-top h2 { font-size: 53px;  line-height: 1.25; font-weight: 400;  font-family: "Petrona", serif; color:#D7CFBC}
.memory-text .highlight { font-size: 22px; line-height: 1.5; margin-bottom: 15px; color:#D7CFBC }
.memory-text .highlight strong { font-weight: 700; }
.memory-text .desc { font-size: 15px; line-height: 1.7; color:#D7CFBC; }
.memory-image { position: relative; border-radius: 20px;}
.memory-image img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius:20px;}
.memory-btn { position: absolute; right: 30px; bottom: 30px; background: #fff; color: #615E53; padding: 16px 36px; border-radius: 999px; font-size: 13px; letter-spacing: 2px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; font-weight:700; margin-bottom:-55px;}
.memory-btn:hover { background: #efeede; transform: scale(1.05); }

.footer {
padding: 80px 60px 40px;
color: #5f5b52;
position: relative;
z-index: 2;
overflow: hidden; 
    background: linear-gradient(135deg, #615E53, #615E53);
        border-radius: 0px 120px 0px 0px;
}

.footer::after {
content: "";
position: absolute;
right: -60px;
bottom: 90px;
width: 420px;
height: 420px;
background: url('https://www.akinyelkovan.com/wp-content/uploads/2026/01/yelkovan-logo-2.svg') no-repeat;
background-size: contain;
opacity: 1;
pointer-events: none;
z-index: 1;
}

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

.footer-left{
width:50%;
}

.footer-right{
width:50%;
}
.footer-left h5 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #D7CFBC;
}

.footer-left h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #D7CFBC;
}

.contact-form { max-width: 520px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 15px; }

.input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.2);
    outline: none;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    cursor: text;
}

.input::placeholder{
color:white 
}

.input:focus { border-color: #6a665b; background: rgba(255,255,255,0.4); }

.submit-btn {
    border: none;
    border-radius: 40px;
    background: #D7CFBC;
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 16px 30px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.submit-btn:hover { background: #4a463d; }
.submit-btn span { font-size: 22px; margin-left: 10px; }

.kvkk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    margin-top: 20px;
    color: #D7CFBC;
  
}

.kvkk input {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #D7CFBC;
    position: relative;
   
}

.kvkk input:checked::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #D7CFBC;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-right h5 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #D7CFBC;
}

.footer-right p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #D7CFBC;
}

.footer-right a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.1); transition: border 0.3s; }
.footer-right a:hover { border-bottom-color: #6a665b; }

.socials {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials a {
    width: 48px;
    height: 48px;
    border: 1px solid #8c8574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D7CFBC;
    transition: all 0.3s ease;
}
.socials a:hover { background: #6a665b; color: #fff; transform: translateY(-5px); }
.socials svg { width: 18px; height: 18px; }

.social-divider { width: 1px; height: 30px; background: #8c8574; }

.footer-bottom {
    border-top: 1px solid #D7CFBC;
    margin-top: 80px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .brand {
   
    width:150px;
}

.footer-bottom .brand img {
   
    width:150px;
}

.footer-bottom .brand span {
    letter-spacing: 6px;
    font-size: 10px;
    color: #8c8574;
    text-transform: uppercase;
}

.copyright { font-size: 12px; color: white; }




.yelkovan-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background-color: #D7CFBC;
}

.yelkovan-hero__content {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yelkovan-hero__content h1 {
    font-size: clamp(36px, 6vw, 35px);
    margin-bottom: 40px;
    color: #615E53;
    overflow: hidden;
}

.yelkovan-hero__content h1 span {
    display: block;
    transform: translateY(100%);
}

 .yelkovan-hero__content h3 {
    font-size: clamp(22px, 6vw, 22px);
   
    margin-bottom: 40px;
    color: #615E53;
    overflow: hidden;
}

.yelkovan-hero__content h3 span {
    display: block;
    transform: translateY(100%);
}

.yelkovan-hero__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #615E53;
    margin-bottom: 24px;
    max-width: 580px;
    opacity: 0;
    transform: translateY(20px);
}

.yelkovan-hero__image {
    background-image: url("https://www.akinyelkovan.com/wp-content/uploads/2026/01/ustresim.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    clip-path: inset(0% 0% 0% 100%); 
}

.yelkovan-hero__imagee {
    background-image: url("https://www.akinyelkovan.com/wp-content/uploads/2026/01/kentseldon-scaled.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    clip-path: inset(0% 0% 0% 100%); 
}
.yelkovan-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: linear-gradient(135deg, #5a584f, #3f3e39);
}

.yelkovan-story__image {
    background-image: url("https://www.akinyelkovan.com/wp-content/uploads/2026/01/altresim.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    clip-path: inset(0% 100% 0% 0%);
}

.yelkovan-story__content {
    color: #e8e6df;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yelkovan-story__content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 580px;
    opacity: 0;
    transform: translateY(30px);
}

.yelkovan-story__content strong {
    color: #c7b89a;
    font-weight: 600;
}


@media (min-width: 769px) and (max-width: 1025px) {
    .yelkovan-hero__content, .yelkovan-story__content { 
        padding: 60px 6%; 
    }
    .yelkovan-hero__content h1 {
        font-size: clamp(32px, 5vw, 32px);
    }
    .yelkovan-hero__content h3 {
        font-size: clamp(20px, 5vw, 20px);
    }
    .yelkovan-hero__content p {
        font-size: 15px;
    }
    .yelkovan-story__content p {
        font-size: 16px;
    }
}

@media (max-width: 768px)
{
    .yelkovan-hero, .yelkovan-story { grid-template-columns: 1fr; }
    .yelkovan-hero__content, .yelkovan-story__content { padding: 80px 30px; }
    .yelkovan-hero__image, .yelkovan-story__image { min-height: 400px; }
    .yelkovan-story__image { grid-row: 1; }
}

.yelkovan-hero__imagee{
min-height:60vh;
}
 .timeline-wrapper {
    padding: 120px 0;
  
}

.timeline-header {
    max-width: 1350px;
    margin: 0 auto 80px;
    padding: 0 80px;
    overflow: hidden;
}

.timeline-header h2 {
    font-size: 48px;
    color: #6b6459;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(100%);
     font-family: "Petrona", serif;
     font-weight:400;
}

.timeline-container {
    position: relative;
    background: linear-gradient(135deg, #615E53, #615E53);
    border-radius: 28px;
    padding: 30px 0;
    width: calc(100% - 160px);
    max-width: 1350px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
   
    padding: 0 80px;
    gap: 120px;
    opacity: 0;
    transform: translateY(50px);
}

.timeline-text {
    color: #e8e5dc;
}

.timeline-text h3 {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 20px;
     font-family: "Petrona", serif;
}


.mini-title {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.divider {
    display: block;
    width: 320px;
    height: 3px;
    background: #e8e5dc;
    margin: 20px 0 30px;
    transform: scaleX(0);
    transform-origin: left;
}
.timeline-item.left {
display: grid;
grid-template-columns: 1fr;
padding-bottom:50px;
}


.timeline-item.left .divider,
.timeline-item.right .divider {
    margin-left: -80px;
}

.timeline-text p {
    line-height: 1.7;
    opacity: 0.85;
    font-size: 16px;
}

.timeline-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    clip-path: inset(0% 0% 100% 0%); 
}

.timeline-image img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
    transform: scale(1.1); 
    border-radius:20px;
}

.timeline-item:hover .timeline-image img {
    filter: grayscale(0%);
}




@media (min-width: 769px) and (max-width: 1025px) {
.timeline-wrapper {
padding: 100px 0;
}

.timeline-header {
padding: 0 50px;
margin-bottom: 60px;
}

.timeline-header h2 {
font-size: 40px;
line-height: 1.25;
}

.timeline-container {
width: calc(100% - 100px);
padding: 25px 0;
border-radius: 24px;
}

.timeline-item {
padding: 0 50px;
gap: 80px;
}

.timeline-text h3 {
font-size: 24px;
letter-spacing: 1.5px;
}

.timeline-text p {
font-size: 15.5px;
line-height: 1.65;
}

.divider {
width: 250px;
margin: 18px 0 28px;
}
}

@media (max-width: 768px) {

.timeline-wrapper {
padding: 80px 0;
}

.timeline-header {
padding: 0 20px;
margin-bottom: 50px;
}

.timeline-header h2 {
font-size: 32px;
line-height: 1.3;
}

.timeline-container {
width: calc(100% - 40px);
padding: 20px 0;
border-radius: 20px;
}

.timeline-item {
grid-template-columns: 1fr;
padding: 0 20px;
gap: 40px;
}

.timeline-item.left {
padding-bottom: 40px;
}

.timeline-text h3 {
font-size: 22px;
letter-spacing: 1px;
}

.timeline-text p {
font-size: 15px;
line-height: 1.6;
}

.mini-title {
font-size: 12px;
}

.divider {
width: 180px;
margin: 15px 0 25px;
}

.timeline-item.left .divider,
.timeline-item.right .divider {
margin-left: 0;
}

.timeline-image {
border-radius: 16px;
clip-path: inset(0 0 0 0);
}

.timeline-image img {
transform: scale(1);
}
}




.hero {
position: relative;
width: 100%;
min-height: 100vh;
overflow: hidden;
margin-bottom:50px;
}

.bg-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
opacity: 0;
transform: scale(1.1);
z-index: 0;
}

.grid {
position: relative;
display: grid;
grid-template-columns: repeat(4, 1fr);
min-height: 100vh;
z-index: 10;
background: rgba(0,0,0,0.2);
}

.cell {
position: relative;

padding: 40px;
display: flex;
flex-direction: column;
justify-content: flex-end;
border-right: 1px solid var(--border-color);
border-bottom: 1px solid var(--border-color);
overflow: hidden;
transition: background 0.4s ease;
border: 1px solid rgba(255, 255, 255, 0.4);
}

.cell:hover {
background: var(--active-bg);
}

.cell-content {
pointer-events: none;
width: 100%;
padding-bottom: 80px; 
}

.cell-content span {
font-size: 24px;
font-weight: 700;
display: block;
letter-spacing: 1px;
color: #D7CFBC;
}

.cell-content .desc-wrapper {
position: absolute; 
bottom: 40px; 
left: 40px;
right: 40px;
overflow: hidden;
}

.cell-content p {
font-size: 15px;
line-height: 1.4;
color: rgba(255,255,255,0.7);
transform: translateY(110%);
}

@media (min-width: 769px) and (max-width: 1025px) {
.grid { 
    grid-template-columns: repeat(2, 1fr); 
}
.cell {
    padding: 35px;
}
.cell-content span {
    font-size: 22px;
}
.cell-content p {
    font-size: 14px;
}
}

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

@media (max-width: 600px) {
.grid { grid-template-columns: repeat(2, 1fr); }
.cell { 
    min-height: 220px; 
    padding: 20px;
}
.cell-content { padding-bottom: 60px; }
.cell-content span { font-size: 16px; }
.cell-content .desc-wrapper { 
    position: relative; 
    bottom: auto; 
    left: auto; 
    right: auto;
    margin-top: 10px;
}
.cell-content p { 
    font-size: 12px; 
    transform: translateY(0); 
    opacity: 1; 
}
}
.section-title {
    width: 100%;
    padding: 40px 60px;
    position: relative;
    z-index: 20;
    overflow: hidden; 
}

.section-title h2 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 6px; 
    font-weight: 600;
    color: #6E6A5E; 
    text-transform: uppercase;
    
    opacity: 0;
    transform: translateY(60px);
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
.section-title {
padding: 32px 40px;
}

.section-title h2 {
font-size: 38px;
letter-spacing: 4px;
line-height: 1.25;
}
}

@media  (max-width: 768px) {

.section-title {
padding: 24px 20px;
}

.section-title h2 {
font-size: 28px;
letter-spacing: 2px;
line-height: 1.3;
}
}

@media (max-width: 480px) {

.section-title h2 {
font-size: 30px;
letter-spacing: 1.5px;
}
.sosyal-alanlar-section{
padding:0px;
}
.sosyal-ust-bilgi h3{
padding-top:0px !important;
}
.left-area{
width:100% !important; 

}
}


.kentsel-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.kentsel-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    opacity: 0; 
}

.kentsel-card.kentsel-reverse {
    direction: rtl;
}

.kentsel-card.kentsel-reverse .kentsel-content {
    direction: ltr;
}

.kentsel-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    clip-path: inset(0% 100% 0% 0%);
}

.kentsel-card.kentsel-reverse .kentsel-image-box {
    clip-path: inset(0% 0% 0% 100%);
}

.kentsel-image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transform: scale(1.2); 
    transition: filter 0.5s ease;
}

.kentsel-content {
    opacity: 0;
    transform: translateX(50px);
    padding-top:40px;
}

.kentsel-card.kentsel-reverse .kentsel-content {
    transform: translateX(-50px);
}

.kentsel-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #615E53;
}

.kentsel-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #615E53;
    max-width: 480px;
}


/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
.kentsel-container {
padding: 100px 40px;
gap: 100px;
}

.kentsel-card {
gap: 60px;
}

.kentsel-image-box img {
height: 280px;
transform: scale(1.1);
}

.kentsel-content {
padding-top: 30px;
}

.kentsel-content h3 {
font-size: 28px;
margin-bottom: 18px;
}

.kentsel-content p {
font-size: 16px;
line-height: 1.65;
max-width: 100%;
}
}

@media  (max-width: 768px)
{

.kentsel-container {
padding: 80px 20px;
gap: 80px;
}

.kentsel-card {
grid-template-columns: 1fr;
gap: 40px;
}

.kentsel-card.kentsel-reverse {
direction: ltr;
}

.kentsel-image-box {
clip-path: inset(0 0 0 0);
border-radius: 12px;
}

.kentsel-card.kentsel-reverse .kentsel-image-box {
clip-path: inset(0 0 0 0);
}

.kentsel-image-box img {
height: 220px;
transform: scale(1.05);
}

.kentsel-content {
padding-top: 0;
transform: translateX(0);
}

.kentsel-card.kentsel-reverse .kentsel-content {
transform: translateX(0);
}

.kentsel-content h3 {
font-size: 24px;
margin-bottom: 16px;
}

.kentsel-content p {
font-size: 15px;
line-height: 1.6;
max-width: 100%;
}
}

@media (max-width: 480px) {

.kentsel-image-box img {
height: 190px;
}

.kentsel-content h3 {
font-size: 22px;
}
}




.contact-section {
    position: relative;
    width: 100%;
    height: 520px;
    background-image: url("https://www.akinyelkovan.com/wp-content/uploads/2026/01/iletisimce-scaled.webp");
    background-size: cover;
    background-position: center;
}

.contact-title-main {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 500;
    color: #3a3a3a;
}

.left-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 480px;
    height: 100%;
}

.contact-card {
    position: absolute;
    left: 60px;
    bottom: -80px;
    width: 360px;
    padding: 40px 36px;
    background: rgba(140, 135, 120, 0.95);
    border-radius: 10px 70px 10px 10px;
    color: #fff;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-item { margin-bottom: 32px; }
.contact-title { font-size: 24px; font-weight: 600; margin-bottom: 8px; color: #f2e7da; }
.contact-text { font-size: 16px; line-height: 1.6; color: #ffffff; opacity: 0.9; }

.alt-contact-wrapper {
    padding-top: 150px;
    width: 1350px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.alt-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 80px;
    align-items: start;
}

.alt-contact-small {
    font-size: 12px;
    letter-spacing: 2px;
    color: #615E53;
    margin-bottom: 12px;
    font-weight: 600;
}

.alt-contact-title {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #615E53;
}

.alt-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 35px;
    border-radius: 20px;
}

.input-group {
    position: relative;
    border-bottom: 1px solid #615E53;
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-bottom-color: black;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

.input-group input, .input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: #777;
    font-size: 16px;
    outline: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 11px;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-select-wrapper {
    position: relative;
}

.selected-value {
    padding: 10px 0;
    color: #777;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-value::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .selected-value::after {
    transform: rotate(-135deg);
}

.options-list {
    position: absolute;
    top: 100%;
    left: -15px;
    right: -15px;
    background: #716e64;
    border-radius: 8px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    list-style: none;
    padding: 10px 0;
}

.custom-select-wrapper.open .options-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.options-list li {
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    transition: background 0.2s ease;
}

.options-list li:hover {
    background: #817e74;
    color: #D7CFBC;
}

.full-width { grid-column: 1 / -1; }

.alt-contact-btn {
    margin-top: 30px;
    width: 220px;
    height: 55px;
    border: none;
    border-radius: 40px;
    background: #615E53;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.4s ease;
}


/* LOKASYON & MAP */
.alt-contact-right-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.alt-contact-route {
    background: #615E53;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 12px;
    color: white;
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.alt-contact-route:hover { background: #4a4840; }

.alt-contact-map {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.alt-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .alt-contact-wrapper { 
        width: 90%; 
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .alt-contact-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .alt-contact-form { 
        grid-template-columns: 1fr 1fr; 
        column-gap: 30px;
        row-gap: 30px;
    }
    .contact-card { 
        left: 40px;
        width: 320px;
    }
    .contact-title-main {
        font-size: 42px;
    }
    .alt-contact-title {
        font-size: 34px;
    }
    .alt-contact-map {
        height: 420px;
    }
}

@media (max-width:768px){
    .alt-contact-wrapper { width: 92%; }
    .alt-contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .alt-contact-form { grid-template-columns: 1fr; padding:0px; }
    .contact-card { transform: none; bottom: -40px; left:0px; }
}



.project-carousel {
padding-top:50px;
padding-bottom:50px;
overflow: hidden;
width:1350px;
max-width: 100%;
margin:0 auto;
}

.carousel-track {
display: flex;
gap: 60px;
transition: transform .6s ease;
will-change: transform;
padding-top:40px;
}


.img-wrap {
border-radius: 24px;
overflow: hidden;
}

.img-wrap img {
width: 640px;
height: 700px;
object-fit: cover;
border-radius:15px;
}

.project-card h3 {
margin: 18px 0 4px;
font-size: 22px;
color:#615E53
}

.project-card span {
font-size: 14px;
opacity: 1;
color:#615E53
}


.carousel-nav {
margin-top: 50px;
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
}

.nav-btn {
width: 48px;
height: 48px;
border-radius: 50%;
border: 2px solid #615E53;
background: transparent;
}

.progress {
width: 140px;
height: 4px;
background: rgba(0,0,0,.25);
position: relative;
overflow: hidden;
border-radius:50px;
}

.nav-btn img {
margin-bottom:-1px ;
}
.progress .indicator {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 36px;             
height: 4px;
background: #615E53;
left: 0;
transition: left .6s ease;
}
/* HERO */
.proje-hero {
height: 85vh;
background-size: cover;
background-position: center;
position: relative;
display: flex;
align-items: center;
padding: 0 80px;
}

.hero-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,.4);
z-index: 1;
}
.project-info .proje-title{
position: relative;
z-index: 2;
color: #fff;
font-size: 25px !important;
margin: 0;
}

.project-info .proje-title .title-first{
font-size:25px !important; 
}

.project-info .proje-title .title-rest{
font-size:25px !important; 
}

.project-card .proje-title{
padding-top:20px;
position: relative;
z-index: 2;
color: #fff;
font-size: 25px !important;
margin: 0;
}

.project-card .proje-title .title-first{
font-size:25px !important; 
}

.project-card .proje-title .title-rest{
font-size:25px !important; 
}


.proje-title {
position: relative;
z-index: 2;
color: #fff;
font-size: 56px;
margin: 0;
}

.title-first {
font-family: 'Montserrat', serif; 
font-style: italic; 
font-weight:300;
}

.title-rest {
font-family: 'Montserrat', sans-serif;
font-weight: 500;
}
.proje-icerik {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
padding: 100px 80px;
}

.proje-sag, .sosyal-blok {
min-width: 0; 
position: relative;
}

.swiper {
width: 100%;
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
z-index: 1;
}

.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex; 
transition-property: transform;
box-sizing: content-box;
}

.swiper-slide {
flex-shrink: 0; 
width: 100%;
height: 100%;
position: relative;
}

.proje-sag .swiper-slide img {
width: 100% !important;


display: block;
border-radius:15px;
}

.sosyalSlider .swiper-slide img {
width: 100% !important;
height: 300px !important; 
object-fit: cover;
display: block;
border-radius:15px;
}

.proje-hero {
height: 85vh;
background-size: cover;
background-position: center;
position: relative;
display: flex;
align-items: center;
padding: 0 80px;
}

.hero-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,.4);
z-index: 1;
}

.proje-title {
position: relative;
z-index: 2;
color: #fff;
font-size: 56px;
margin: 0;
}


.sosyal-alanlar-section { 
padding: 60px 0;  
}

.sosyal-blok-wrapper { 
margin-bottom: 50px; 
}

.sosyal-ust-bilgi { 
display: flex; 
justify-content: space-between; 
align-items: center; 
margin-bottom: 20px;
padding: 0 10px;
}

.sosyal-ust-bilgi h3 { 
margin: 0; 
font-size: 24px; 
color: #333; 
}

.sosyalSlider { 
width: 100%; 
height: auto; 
padding-bottom: 50px !important;
position: relative;
}

.sosyal-resim-kutu { 
height: 400px; 
border-radius: 12px; 
overflow: hidden; 
position: relative;
}

.sosyal-resim-kutu img { 
width: 100%; 
height: 100%; 

}

.resim-baslik-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px 20px 50px 0px;
text-align:center;
}

.resim-baslik-overlay h4 {
margin: 0;
color: black;
font-size: 18px;
font-weight: 500;
text-align:center;
}

.sosyalSlider .swiper-pagination-bullet-active {
width: 20px; 
border-radius: 4px; 
}

.sosyalSlider .swiper-button-next,
.sosyalSlider .swiper-button-prev {
color: white;
background: rgba(0,0,0,0.5);
width: 40px;
height: 40px;
border-radius: 50%;
}

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

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
.sosyal-resim-kutu {
height: 350px;
}

.resim-baslik-overlay h4 {
font-size: 17px;
}

.sosyal-ust-bilgi h3 {
font-size: 22px;
padding: 40px;
}

.proje-icerik {
padding: 80px 50px;
gap: 50px;
}

.proje-hero {
padding: 0 50px;
height: 70vh;
}

.proje-title {
font-size: 46px;
}
}

@media (max-width: 768px) {
.sosyal-resim-kutu {
height: 300px;
}

.resim-baslik-overlay h4 {
font-size: 16px;
}
}


.proje-sol h2 {
margin-top: 0;
font-size: 32px;
}

.proje-metin {
font-size: 16px;
line-height: 1.8;
color: #444;
}


.sosyal-blok {
margin-bottom: 80px;
}

.sosyal-blok h3 {
margin-bottom: 25px;
font-size: 24px;
}

.sosyal-ust-bilgi h3{
font-size:25px;
padding:50px;
}

#yandexMap {
width: 100%;
height: 700px;
padding-bottom:50px;
}

.swiper-button-next, .swiper-button-prev{
color:white !important;
}
/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
.proje-icerik {
grid-template-columns: 1fr;
gap: 50px;
padding: 80px 50px;
}

.proje-hero {
padding: 0 50px;
height: 70vh;
}

.proje-title {
font-size: 46px;
}

.proje-sag .swiper-slide img {
height: 400px !important;
}

.project-carousel {
width: 100%;
padding: 40px 20px;
}

.carousel-track {
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}

.project-card {
min-width: 85vw;
scroll-snap-align: start;
}

.img-wrap img {
width: 100%;
height: 400px;
}
}

@media (max-width: 1024px) {
.proje-icerik {
grid-template-columns: 1fr;
gap: 40px;
padding: 60px 20px;
}

.proje-hero {
padding: 0 20px;
height: 60vh;
}

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

.proje-sag .swiper-slide img {
height: 350px !important;
}

.project-carousel {
width: 100%;
padding: 40px 20px;
}

.carousel-track {
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}

.project-card {
min-width: 85vw;
scroll-snap-align: start;
}

.img-wrap img {
width: 100%;
height: 400px;
}
}

.project-card a{
text-decoration:none;
}

.proje-progress-wrap {
margin-top: 30px;
}

.proje-progress-info {
display: flex;
justify-content: space-between;
margin-bottom: 8px;
font-size: 14px;
color: black;
}

.proje-progress-bar {
width: 100%;
height: 10px;
background: rgba(255,255,255,0.2);
border-radius: 20px;
overflow: hidden;
}

.proje-progress-fill {
height: 100%;
background: linear-gradient(90deg, #c9a45c, #f3d28b);
border-radius: 20px;
transition: width 0.6s ease;
}


/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
.about-section { 
padding: 90px 40px; 
}

.about-container { 
gap: 60px; 
}
.about-text h2 { 
font-size: 38px; 
}
.about-image { 
height: 450px; 
}
.about-line { 
left: calc(-5vw + 40px); 
width: 160px; 
}

.memory-section { 
padding: 70px 50px; 
border-radius: 0 120px 0 0; 
}
.memory-top { 
gap: 50px; 
}
.memory-top h2 { 
font-size: 44px; 
}
.memory-image img { 
height: 360px; 
}
.leaf { 
width: 250px; 
}
}

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

.about-container { 
grid-template-columns: 1fr; 
gap: 40px; 
}
.about-text h2 { font-size: 32px; }
.about-image { 
height: 350px; 
border-radius: 10px 40px 10px 10px; 
}
.about-line { 
left: 0; 
width: 100px; 
margin: 20px 0; 
}

.memory-section { 
padding: 60px 20px; 
border-radius: 0 80px 0 0; 
}
.memory-top { 
grid-template-columns: 1fr; 
gap: 30px; 
}
.memory-top h2 { font-size: 36px; }
.memory-image img { height: 300px; }
.leaf { width: 150px; }
.leaf.left { top: -20px; left: -20px; }
.leaf.right { top: auto; bottom: -20px; right: -20px; }

.memory-btn {
position: relative;
right: auto;
bottom: auto;
margin-top: 20px;
margin-bottom: 0;
display: flex;
justify-content: center;
}


.project-carousel {
width: 100%;
padding: 40px 20px;
}
.carousel-track {
gap: 20px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
}
.project-card {
min-width: 85vw;
scroll-snap-align: start;
}
.img-wrap img {
width: 100%;
height: 400px;
}


.footer-top {
flex-direction: column !important; 
align-items: flex-start;
gap: 50px; 
padding: 40px 20px;
}

.footer-left, 
.footer-right {
width: 100% !important;
max-width: 100%;
opacity: 0; 
}
.footer{
padding:20px !important;
}

.footer-left h2 {
font-size: 32px; 
line-height: 1.2;
margin-bottom: 30px;
padding-left:0px !important;
text-decoration:none !important;
color:#D7CFBC !important;
}

.footer-bottom {
flex-direction: column-reverse;
gap: 30px;
text-align: center;
align-items: center;
}

.socials {
justify-content: center;
width: 100%;
}

.footer-logo {
margin: 0 auto;
}

.footer::after {
width: 150px;
height: 150px;
bottom: 10px;
right: -20px;
}

}

@media (min-width: 769px) and (max-width: 1024px) {
.footer {
padding: 60px 40px 30px;
}

.footer-top {
gap: 50px;
}

.footer-left h2 {
font-size: 38px;
margin-bottom: 35px;
}

.footer-left h5,
.footer-right h5 {
font-size: 18px;
}

.footer-right p {
font-size: 14.5px;
}

.footer::after {
width: 300px;
height: 300px;
bottom: 60px;
right: -40px;
}

.contact-form {
max-width: 100%;
}

.form-grid {
gap: 12px;
}

.footer-bottom {
margin-top: 60px;
padding-top: 30px;
}
}




.mobile-nav-toggle,
.mobile-overlay {
display: none;
}


@media (min-width: 769px) and (max-width: 1024px) {

.header {
padding: 15px 20px !important;
transform: translateY(0) !important;
opacity: 1 !important;
position: relative;
z-index: 1200;
}

.nav {
display: flex !important;
flex-direction: row !important;
justify-content: space-between !important;
align-items: center !important;
width: 100% !important;
grid-template-columns: none !important;
}

.menu.left, .menu.right {
display: none !important;
}

.logo {
text-align: left !important;
margin: 0 !important;
flex: 0 1 auto !important;
}

.logo a img {
width: 120px !important;
height: auto !important;
display: block;
}

.mobile-nav-toggle {
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 1300 !important; 
flex: 0 0 auto !important;
width: 40px;
height: 40px;
position: relative;
}

.mobile-nav-toggle span {
display: block;
width: 28px;
height: 2px;
background: #777;
margin: 3px 0;
transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: #ffffff;
z-index: 1050; 
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transform: translateY(-100%);
transition: transform 0.7s cubic-bezier(0.85, 0, 0.15, 1);
pointer-events: none;
}

.mobile-overlay.active {
transform: translateY(0);
pointer-events: all;
}

.mobile-menu-list {
list-style: none;
text-align: center;
padding: 0;
width: 100%;
}

.mobile-menu-list li {
margin: 15px 0;
opacity: 0;
transform: translateY(30px);
transition: all 0.5s ease;
}

.mobile-overlay.active .mobile-menu-list li {
opacity: 1;
transform: translateY(0);
}

.mobile-overlay.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.3s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.4s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.5s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.6s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.7s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.8s; }

.mobile-menu-list li a {
font-size: 20px;
color: #777;
text-decoration: none;
letter-spacing: 3px;
font-weight: 300;
text-transform: uppercase;
display: block;
padding: 10px;
}

.mobile-nav-toggle.active span:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
background: #c7b89a; 
}
.mobile-nav-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
background: #c7b89a;
}
}

@media (max-width: 900px) {

.header {
padding: 15px 20px !important;
transform: translateY(0) !important;
opacity: 1 !important;
position: relative;
z-index: 1200;
}

.nav {
display: flex !important;
flex-direction: row !important;
justify-content: space-between !important;
align-items: center !important;
width: 100% !important;
grid-template-columns: none !important;
}

.menu.left, .menu.right {
display: none !important;
}

.logo {
text-align: left !important;
margin: 0 !important;
flex: 0 1 auto !important;
}

.logo a img {
width: 120px !important;
height: auto !important;
display: block;
}

.mobile-nav-toggle {
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 1300 !important; 
flex: 0 0 auto !important;
width: 40px;
height: 40px;
position: relative;
}

.mobile-nav-toggle span {
display: block;
width: 28px;
height: 2px;
background: #777;
margin: 3px 0;
transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: #ffffff;
z-index: 1050; 
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transform: translateY(-100%);
transition: transform 0.7s cubic-bezier(0.85, 0, 0.15, 1);
pointer-events: none;
}

.mobile-overlay.active {
transform: translateY(0);
pointer-events: all;
}

.mobile-menu-list {
list-style: none;
text-align: center;
padding: 0;
width: 100%;
}

.mobile-menu-list li {
margin: 15px 0;
opacity: 0;
transform: translateY(30px);
transition: all 0.5s ease;
}

.mobile-overlay.active .mobile-menu-list li {
opacity: 1;
transform: translateY(0);
}

.mobile-overlay.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.3s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.4s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.5s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.6s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.7s; }
.mobile-overlay.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.8s; }

.mobile-menu-list li a {
font-size: 20px;
color: #777;
text-decoration: none;
letter-spacing: 3px;
font-weight: 300;
text-transform: uppercase;
display: block;
padding: 10px;
}

.mobile-nav-toggle.active span:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
background: #c7b89a; 
}
.mobile-nav-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
background: #c7b89a;
}
}