/* Genel Ayarlar ve Reset (Dark Mode) */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Koyu Gri Arka Plan */
    color: #e0e0e0; /* Açık Gri Metin */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0; /* Beyaza yakın başlıklar */
}

.bg-light {
    background-color: #1e1e1e; /* Hafif daha açık koyu gri */
}

/* Header ve Navigasyon */
header {
    background: #1a2a40; /* Koyu Mavi/Gri Tema */
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
}

/* Masaüstü menü görünümü */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
}

.nav-links li a:hover {
    background: #2a3c50;
}

.menu-toggle {
    display: none; /* Masaüstünde gizle */
    font-size: 1.5em;
    cursor: pointer;
}

/* 📌 HERO ALANI */
.hero {
    /* Görsel dosyasının adı: background.jpg */
    background: url('background.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,1); /* Daha belirgin gölge */
}

.hero h2 {
    font-size: 3em;
    margin: 0;
}

/* Hakkımda Metni */
#hakkimda p {
    text-align: justify;
    max-width: 800px;
    margin: 20px auto;
}

/* Hizmetler Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1e1e1e; /* Darker Card Background */
    color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

/* 📌 HİZMET GÖRSEL BOYUTLANDIRMASI (IMG Etiketi için) */
.service-card .service-img-tag {
    /* İstenen kesin boyutlar: 100px x 150px */
    width: 100px; 
    height: 150px;
    margin-bottom: 15px;
    border-radius: 5px;
    
    /* Görseli sığdırıp, ortalar ve kart içinde ortalar */
    object-fit: cover; 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
}

/* 📌 ESKİ PLACEHOLDER DIV'İNİ GİZLEME (Yöntem değiştirildiği için) */
.service-image {
    display: none !important;
}

.service-card h3 {
    color: #4a86c6; /* Açık Mavi/Vurgu */
    margin-top: 0;
}

/* Yorumlar (Basit Grid Yapısı) */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: #1e1e1e; /* Darker Card Background */
    color: #e0e0e0;
    padding: 25px;
    border-left: 5px solid #2a588a; /* Vurgu çizgisi */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-style: italic;
}

.client-name {
    margin-top: 15px;
    text-align: right;
    font-style: normal;
    color: #4a86c6; /* Vurgu */
}

/* Footer */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
}

/* 📌 WHATSAPP BUTONU STİLİ */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    z-index: 10000;
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* 📌 RESPONSIVE TASARIM (Mobil Görünüm) */
@media (max-width: 768px) {
    /* HERO: Mobilde de görünmesi için ayarlandı */
    .hero {
        height: 200px; 
        padding: 20px 0;
    }
    
    header .container {
        flex-wrap: wrap;
    }
    
    /* NAVIGASYON: Mobil menü başlangıçta gizli */
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        background: #1a2a40;
        text-align: center;
        /* Menüyü header altına sabitleme */
        position: absolute; 
        top: 50px; 
        left: 0;
        z-index: 999; 
    }
    
    /* JavaScript'in eklediği 'active' sınıfı ile menü açılır */
    .nav-links.active {
        display: flex; 
    }

    .nav-links li {
        border-top: 1px solid #2a3c50;
    }

    .menu-toggle {
        display: block; /* Mobilde hamburger ikonunu göster */
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .logo {
        flex-grow: 1;
    }
    
    .services-grid, .reviews-slider {
        grid-template-columns: 1fr;
    }
}