/* --- Temel Ayarlar --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --gold: #b3834d;
    --dark: #1a1a1a;
    --light-bg: #fdfdfd;
    --text-dark: #333333;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* YENİ EKLENEN: Buton arka planının site dışına taşıp yatay kaydırma çubuğu çıkarmasını engeller */
body {
    overflow-x: hidden; 
}

/* Site sınırlarını 1600px'e sabitliyoruz */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* --- Top Bar (Üst Siyah Çubuk) --- */
.top-bar {
    background-color: var(--dark);
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 2px solid var(--gold);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-text {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
}

.social-icons a {
    color: #ffffff;
    background-color: var(--dark);
    font-size: 18px;
    margin-right: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
}

.top-right {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.phone-wrapper {
    display: flex;
    align-items: center;
}

.phone-icon {
    color: var(--dark);
    background-color: var(--gold);
    padding: 6px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 12px;
}

.separator {
    color: var(--gold);
    margin: 0 15px;
}

/* --- Ana Header --- */
.main-header {
    background-color: var(--light-bg);
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

/* Logo Alanı (Sol köşede kibar duruş) */
.logo-box {
    display: flex;
    align-items: center;
}

/* Logo Boyutu - Kankacım buradaki max-height değerini artırarak logoyu büyütebilirsin */
.site-logo {
    max-height: 70px; 
    width: auto;
    transition: all 0.3s ease;
}

/* Masaüstü Navigasyon */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    text-align: center;
    line-height: 1.4;
}

.desktop-nav ul li a i {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.desktop-nav ul li:hover a,
.desktop-nav ul li.active a {
    color: var(--gold);
}

.desktop-nav ul li:hover a i,
.desktop-nav ul li.active a i {
    color: var(--gold);
}

.desktop-nav ul li.active a {
    position: relative;
}

.desktop-nav ul li.active a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--gold);
}

/* Aksiyon Butonu ("Özel Teklif Al") */
.header-action {
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 20px; /* Yazının en sağa yapışmasını önler */
}

.action-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, #b88645 0%, #a06e30 100%);
    transform: skewX(-20deg);
    /* YENİ EKLENEN: Sünme merkezini sol alt köşe yapar. Böylece arka plan sola taşıp logoyu/menüyü yemez, sadece sağa uzar! */
    transform-origin: bottom left; 
    z-index: 1;
}

.offer-btn {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    background-color: var(--gold);
    border: none;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 13px;
}

.mobile-menu-toggle i {
    font-size: 26px;
}

/* --- Mobil Uyumluluk Güncellemeleri --- */
@media (max-width: 1100px) {
    .main-header-inner {
        height: 90px;
    }

    /* Üst barı mobilde tam ortalıyoruz */
    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
    
    .top-left, .top-right {
        width: 100%;
        justify-content: center;
    }

    .phone-wrapper {
        justify-content: center;
    }

    .header-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobilde Açılır Menü Tasarımı */
    .desktop-nav {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-bg);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 100;
        border-top: 1px solid #f0f0f0;
    }

    .desktop-nav.active {
        display: flex; 
    }

    .desktop-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .desktop-nav ul li a {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px 30px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }

    .desktop-nav ul li a i {
        margin-bottom: 0;
        margin-right: 15px;
        width: 25px;
        font-size: 18px;
    }

    .desktop-nav ul li.active a::after {
        display: none; 
    }
}

@media (max-width: 576px) {
    .phone-wrapper {
        font-size: 14px;
        flex-wrap: wrap;
    }
    .separator {
        margin: 0 5px;
    }
}