/* * Ana Site CSS (style.css)
 * segateknoloji.com.tr
*/

/* * Google Font (Opsiyonel ama modern bir görünüm katar)
 * Bu satırı CSS dosyanızın en üstüne ekleyebilirsiniz.
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    /* Bootstrap'in fontunu kullanmak yerine daha modern bir font ailesi */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

/* --- Hero (Ana Karşılama) Alanı --- */
.hero-section {
    background-color: #f8f9fa; /* Hafif bir arkaplan */
    padding: 6rem 0;
}

.hero-section h1 {
    font-weight: 700;
    color: #212529; /* Koyu gri */
    line-height: 1.2;
}

/* --- Hizmet Kartları --- */
.service-icon {
    font-size: 3rem; /* 48px */
    color: #0d6efd; /* Bootstrap'in ana Mavi rengi */
}

.service-card {
    border: 1px solid #e9ecef; /* Çok hafif bir kenarlık */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px); /* Kartın havaya kalkma efekti */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Daha belirgin gölge */
}

/* --- Harekete Geçirici Mesaj (CTA) --- */
.cta-section {
    background-color: #0d6efd; /* Ana Mavi */
    color: white;
}

.cta-section .btn-light {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-section .btn-light:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* --- Footer (Alt Kısım) --- */
footer a.text-white-50:hover {
    color: #ffffff !important; /* Footer linkleri üzerine gelince beyaz olsun */
    text-decoration: underline !important;
}

/* --- Navigasyon Menüsü --- */
.navbar-brand {
    font-size: 1.5rem; /* Logo/Marka adı biraz daha büyük */
}