/* --- 1. GLOBAL RESET --- */
/* Bu kural tüm sitedeki her element için tutarlı bir başlangıç noktası sağlar. */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Genel Body Ayarları */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    /* BU SATIRI EKLEYİN: Header'ın yüksekliği kadar boşluk bırakır */
    padding-top: 75px; /* Bu değeri kendi header yüksekliğinize göre ayarlayabilirsiniz */
}
   
/* --- ORTAK ALANLAR --- */

/* Header */
.site-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

    .site-logo img {
        height: 50px; /* Logonun yüksekliğini buradan ayarlayabilirsiniz. */
        width: auto; /* Genişlik otomatik ayarlanarak oran korunur. */
    }

.site-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .site-nav-links a {
        color: white;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .site-nav-links a:hover {
            opacity: 0.7;
        }

/* Genel Container ve Section Title */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #000;
    letter-spacing: 1px;
}


/* Contact Section */
.site-contact {
    padding: 80px 0;
    background: white;
}

.site-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.site-contact-item {
    padding: 2rem;
}

    .site-contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #000;
        font-weight: 400;
    }

    .site-contact-item p {
        color: #666;
        line-height: 1.6;
    }

/* Footer */
.site-footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

    .site-footer p {
        opacity: 0.8;
    }

/* Mobil Uyumluluk (Sadece ortak alanlar için) */
@media (max-width: 768px) {
    .site-nav-links {
        display: none; /* Örnek: mobilde menüyü gizle */
    }
}


.site-footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 3rem 0; /* Padding'i biraz artırmak daha iyi görünebilir */
}

/* FOOTER LOGOSU İÇİN YENİ KURALLAR */
.site-footer-logo {
    margin-bottom: 1.5rem; /* Logo ile telif hakkı yazısı arasına boşluk koyar. */
}

    .site-footer-logo img {
        height: 60px; /* Footer logosu biraz daha büyük veya farklı boyutta olabilir. */
        width: auto;
        opacity: 0.8; /* Footer'da logonun biraz daha soluk görünmesi şık durabilir. */
        transition: opacity 0.3s ease;
    }

        .site-footer-logo img:hover {
            opacity: 1; /* Üzerine gelince netleşir. */
        }

.site-footer p {
    opacity: 0.8;
}

/* Mobil Navigasyon Stilleri */

/* Sağ üstteki "Hamburger" menü butonu */
.mobile-nav-toggle {
    color: #fff; /* İkon rengi */
    font-size: 1.5rem;
    line-height: 1;
    border: none;
    padding: 0.25rem 0.75rem;
}

    .mobile-nav-toggle:focus {
        box-shadow: none;
    }

/* Soldan açılan menünün genel stili */
.mobile-nav-menu {
    background-color: #1a1a1a; /* Koyu arkaplan */
    color: #fff;
    width: 280px; /* Menü genişliği */
}

    /* Menü başlığı (logo ve kapatma butonu) */
    .mobile-nav-menu .offcanvas-header {
        border-bottom: 1px solid #333;
        padding: 1rem 1.5rem;
    }

    .mobile-nav-menu .btn-close {
        background-color: #fff; /* Kapatma butonu rengi */
        border-radius: 50%;
    }

/* Menü içindeki linklerin listesi */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        color: #ccc;
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border-bottom: 1px solid #333;
    }

    .mobile-nav-links li:last-child a {
        border-bottom: none;
    }

    .mobile-nav-links li a:hover {
        background-color: #333;
        color: #fff;
        padding-left: 2rem; /* Üzerine gelince hafifçe sağa kaydırma efekti */
    }

/* Font Awesome ikonlarını kullanabilmek için (opsiyonel ama önerilir) */
/* _Layout.cshtml'in <head> kısmına aşağıdaki linki ekleyebilirsiniz */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" /> */