/* ----------------------------------------------------------- */
/* HEADER */
/* ----------------------------------------------------------- */

.site-header {
    width: 100%;
    height: 100px;

    background-image: none;
    background-color: #F3E9DA;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;             /* LOGO'YU DİKEY ORTALAMAK İÇİN GEREKLİ */
    align-items: center;       /* Dikeyde tam ortalama */
    justify-content: flex-start; /* Yatayda sola yaslama */
    padding-left: 20px;        /* Sola yakın durması için boşluk */
}
@media (max-width: 1400px) {
    .site-header {
        height: 90px;
        background-size: cover; /* İstersen contain de yapabiliriz */
    }
}
@media (max-width: 1200px) {
    .site-header {
        height: 75px;
        background-size: cover; /* İstersen contain de yapabiliriz */
    }
}

@media (max-width: 1000px) {
    .site-header {
        height: 75px;
        background-size: cover; /* İstersen contain de yapabiliriz */
    }
}
@media (max-width: 850px) {
    .site-header {
        height: 70px;
        background-size: cover; /* İstersen contain de yapabiliriz */
    }
}

    /* LOGO */

.header-logo {
    height: 90px;          /* Masaüstünde 100px header'ın içinde rahat durur */
    width: auto;           /* Oranı korur */
    display: block;
    margin-left: 10px;     /* Soldan hafif boşluk */
}
@media (max-width: 1400px) {
    .header-logo {
        height: 90px;       /* Mobilde biraz daha küçük */
        margin-left: 15px;
    }
}
@media (max-width: 1200px) {
    .header-logo {
        height: 75px;       /* Mobilde biraz daha küçük */
        margin-left: 15px;
    }
}
@media (max-width: 1000px) {
    .header-logo {
        height: 75px;      /* Mobilde biraz daha küçük */
        margin-left: 15px;
    }
}
@media (max-width: 850px) {
    .header-logo {
        height: 65px;      /* Mobilde biraz daha küçük */
        margin-left: 8px;
    }
}
@media (max-width: 768px) {
    .header-logo {
        margin: 0 auto;     /* Ortalar */
        height: 70px;       /* Mobilde biraz daha küçük */
    }
}

@media (max-width: 480px) {
    .header-logo {
        margin: 0 auto;     /* Ortalar */
        height: 70px;       /* Çok küçük cihazlar */
    }
}
@media (max-width: 390px) {
    .header-logo {
        margin: 0 auto;     /* Ortalar */
        height: 60px;       /* Çok küçük cihazlar */
    }
}

    /* HEADER-CONTENT */

/* ----------------------------------------------------------- */
/* NAVIGATION MENU */
/* ----------------------------------------------------------- */

.header-nav {
    margin-left: 40px; /* LOGO SOLDAYKEN MENÜYÜ SAĞA İTER */
    padding-top: 30px;
}

.header-nav ul {
    display: flex;
    gap: 20px;              /* Linkler arası boşluk */
    list-style: none;
}

.header-nav a {
    color: #3A3A3A;         /* Yazılar beyaz */
    font-size: 18px;        /* İstediğin boyut */
    font-family: 'Inter18Bold', sans-serif; /* Yüklediğin font */
    text-decoration: none;  /* Alt çizgiyi kaldır */
    transition: 0.2s ease;  /* Hover animasyonu */
}
@media (max-width: 1400px) {
    .header-nav a {
        font-size: 15px;
    }
    .header-nav ul {
        gap: 15px;
    }
    .header-nav {
    margin-left: 30px; /* LOGO SOLDAYKEN MENÜYÜ SAĞA İTER */
    }
}
@media (max-width: 1200px) {
    .header-nav a {
        font-size: 13px;
    }
    .header-nav ul {
        gap: 10px;
    }
    .header-nav {
    margin-left: 40px; /* LOGO SOLDAYKEN MENÜYÜ SAĞA İTER */
    }

}
@media (max-width: 1000px) {
    .header-nav a {
        font-size: 12px;

    }
    .header-nav ul {
        gap: 10px;
    }
    .header-nav {
    margin-left: 30px; /* LOGO SOLDAYKEN MENÜYÜ SAĞA İTER */
    }

}
@media (max-width: 850px) {
    .header-nav a {
        font-size: 11px;

    }
    .header-nav ul {
        gap: 10px;
    }
    .header-nav {
    margin-left: 20px; /* LOGO SOLDAYKEN MENÜYÜ SAĞA İTER */
    }

}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .header-nav ul {
        gap: 15px;
    }

    .header-nav {
    margin-left: 40px; /* LOGO SOLDAYKEN MENÜYÜ SAĞA İTER */
    }

}
/* Hover Efekti */
.header-nav a:hover {
    color: #bbbbbb;         /* Hafif gri */
    transform: translateY(-2px); /* Hafif yukarı hareket */
}
/* ----------------------------------------------------------- */
/* CONTACT AREA (HEADER RIGHT SIDE) */
/* ----------------------------------------------------------- */

.contact-area {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto; /* Header’ın en sağ tarafına yaslar */
    margin-right: 30px;
    margin-top: 35px;
}

.contact-text {
    color: #3A3A3A;
    font-size: 18px;
    font-family: 'Inter18Bold', sans-serif;
    text-decoration: none;
    transition: 0.2s;
    margin-right: 10px;
    margin-bottom: 5px;
}


/* İkonlar */
.contact-icon {
    height: 36px;
    width: auto;
    cursor: pointer;
    transition: 0.2s ease;
}

.contact-icon:hover {
    transform: scale(1.15);
    filter: brightness(0.8);
}
/* 1400px */
@media (max-width: 1400px) {
    .contact-text {
        font-size: 15px;
    }
    .contact-icon {
        height: 30px;
    }
    .contact-area { 
        margin-right: 20px;
    }
}

/* 1200px */
@media (max-width: 1200px) {
    .contact-text {
        font-size: 13px;
    }
    .contact-icon {
        height: 27px;
    }
}

/* 1000px */
@media (max-width: 1000px) {
    .contact-text {
        font-size: 12px;
    }
    .contact-icon {
        height: 22px;
    }
}
@media (max-width: 850px) {
    .contact-text {
        font-size: 11px;
    }
    .contact-icon {
        height: 22px;
    }
}

/* MOBIL – NAV kapanıyor */
@media (max-width: 768px) {
    .contact-area {
        display: none; /* Menü kapanıyorsa iletişim butonları da kapanır */
    }
}


/*---------------------------------------------------HAMBURGER----------------------------------------------------*/

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;

    position: absolute;
    left: 20px;
    top: 28px;
    

    z-index: 1500;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d98700;
    border-radius: 3px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -260px; /* Başlangıçta gizli */
    width: 260px;
    height: 100dvh;
    min-height: 100dvh;

    background: #F3E9DA;
    padding-top: 120px;

    transition: 0.3s ease;
    z-index: 1400;
    display: flex;               /* EKLENDİ */
    flex-direction: column;      /* EKLENDİ */
    justify-content: space-between; /* ÜST MENÜ YUKARIDA, İLETİŞİM AŞAĞIDA */
    overflow-y: auto;      /* 🔥 İçerik taşarsa kayabilir */
    padding-bottom: 40px;  /* 🔥 En alt içeriğe nefes payı */
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 25px;
}

.mobile-menu a {
    color: #3A3A3A;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Inter18Bold', sans-serif;
    transition: 0.2s;
}

.mobile-menu a:hover {
    color: #bbbbbb;
    padding-left: 5px;
}

/* Açıkken */
.mobile-menu.active {
    left: 0;
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.692);

    display: none;
    z-index: 1300;
}

.menu-overlay.active {
    display: block;
}
@media (max-width: 768px) {

    .header-nav {
        display: none;
    }

    .contact-area {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
/* ----------------------------------------------------------- */
/* MOBILE MENU - CONTACT AREA */
/* ----------------------------------------------------------- */

.mobile-contact {
    margin-top: 50px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.mobile-contact-item span {
    color: #3A3A3A;
    font-size: 20px;
    font-family: 'Inter18Bold', sans-serif;
    transition: 0.2s;
}

.mobile-contact-item span:hover {
    color: #bbbbbb;
}

.mobile-contact-icon {
    height: 30px;
    width: auto;
    transition: 0.2s ease;
}

.mobile-contact-icon:hover {
    transform: scale(1.15);
    filter: brightness(0.8);
}

/*---------------------------------------- SCROLL ------------------------------------------------------*/
.site-header.hide {
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.35s ease;
}

.site-header {
    z-index: 2000 !important;
}


/* LOGO LİNKİNİ MOBİLDE ORTALA */
@media (max-width: 768px) {
    .logo-link {
        display: block;
        margin: 0 auto;       /* Link ortalansın */
    }

    .header-logo {
        margin: 0 auto;       /* Görsel ortada kalsın */
        display: block;
    }
}
