/* Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Koyu arka plan */
    color: #eeeeee; /* Açık metin rengi */
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
}

a {
    color: #4CAF50; /* Bağlantı rengi - yeşil vurgu */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Header (Başlık) */
header {
    background-color: #0d0d0d; /* Daha koyu başlık arka planı */
    color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
}

header .logo {
    float: left;
    font-size: 1.8rem;
    font-weight: bold;
}

header .logo a {
    color: #ffffff;
    text-decoration: none;
}

header nav {
    float: right;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
}

header nav ul li a {
    color: #ffffff;
    font-weight: bold;
    padding: 5px 0;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #4CAF50; /* Vurgu rengi */
}

/* Clearfix for header */
header::after {
    content: "";
    display: table;
    clear: both;
}

/* Section Styling */
.section {
    padding: 60px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section ul {
    list-style: none;
    padding: 0;
    display: flex; /* Flexbox ile yan yana listeleme */
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.section ul li {
    background-color: #2a2a2a; /* Liste öğeleri için biraz daha açık koyu */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(33% - 40px); /* Üçlü sütun düzeni */
    max-width: calc(33% - 40px);
    text-align: left;
    transition: transform 0.3s ease;
}

.section ul li:hover {
    transform: translateY(-5px);
}

.section.intro-cover {
    background: url('../img/soil_cover.jpg') no-repeat center center/cover; /* Arka plan resmi */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    padding: 0;
}

.section.intro-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Metni okunur kılmak için kaplama */
}

.section.intro-cover .content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.section.intro-cover h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.section.intro-cover p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Call to Action */
.cta-section {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.cta-buttons a {
    display: inline-block;
    background-color: #4CAF50; /* Buton rengi */
    color: #ffffff;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #45a049;
    text-decoration: none;
}

/* Footer (Alt Bilgi) */
footer {
    background-color: #0d0d0d; /* Header ile aynı veya benzer koyu ton */
    color: #bbbbbb; /* Açık gri metin */
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #333333;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header nav {
        float: none;
        text-align: center;
        margin-top: 10px;
    }

    header .logo {
        float: none;
        text-align: center;
        width: 100%;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }

    .section.intro-cover h1 {
        font-size: 2.5rem;
    }

    .section.intro-cover p {
        font-size: 1.2rem;
    }

    .section ul {
        flex-direction: column; /* Mobil görünümde alt alta */
    }

    .section ul li {
        max-width: 100%;
        flex: 1 1 100%;
    }
}
/* css/style.css dosyanızda */

/* Genel stilleriniz burada devam ediyor... */

/* Yeni Başlık Vurgulama Stili */
.highlight-heading {
    color: #4CAF50; /* İstediğiniz rengi buraya girin. Bu örnekte açık yeşil kullanıldı. */
    /* Diğer stil özellikleri (isteğe bağlı): */
    /* font-weight: bold; */ /* Kalın yapmak için */
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.2); */ /* Hafif gölge eklemek için */
}

/* Başlık boyutunuza göre (h1, h2, h3 vb.) daha spesifik hale getirebilirsiniz */
h2.highlight-heading {
    color: #4CAF50; /* Sadece h2 başlıkları için geçerli */
}
/* Açılır Menü (Dropdown) Tasarımı */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #0d0d0d; /* Header rengiyle uyumlu */
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1000;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content li {
    display: block !important;
    margin: 0 !important;
    padding: 5px 15px;
}

.dropdown-content li a {
    color: #eee !important;
    font-size: 0.95rem;
    display: block;
    width: 100%;
}

.dropdown-content li a:hover {
    color: #4CAF50 !important; /* Yeşil vurgu rengi */
    text-decoration: none;
}

/* Üzerine gelince göster */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobilde menülerin birbirine girmemesi için */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: block;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px;
    }
}