/* Genel (Global) Stiller: Beyaz ve Minimalist Tema */
:root {
    --color-bg: #ffffff; /* Arka plan beyaz */
    --color-text: #333333; /* Metin rengi koyu gri */
    --color-text-light: #777777; /* Açık gri metin */
    --color-border: #eeeeee; /* Kenarlık rengi açık gri */
    --color-primary: #000000; /* Vurgu rengi siyah (premium hissi için) */
    --font-main: 'Inter', 'Outfit', sans-serif; /* Modern ve temiz font ailesi */
    --transition: all 0.3s ease; /* Yumuşak geçiş animasyonu */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Kutu modeli yapılandırması */
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; /* Yatay kaymayı engelle */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition); /* Link geçiş animasyonu */
}

a:hover {
    opacity: 0.7; /* Link hover efekti */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Sağa ve sola iç boşluk */
}

/* Tipografi (Typography) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-primary); /* Siyah başlıklar */
}

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Yarı saydam beyaz arkaplan */
    backdrop-filter: blur(10px); /* Arka planı bulanıklaştır (Glassmorphism) */
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 40px; /* Logo yüksekliği */
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px; /* Menü öğeleri arası boşluk */
}

.main-navigation a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Harfler arası hafif boşluk */
}

/* 1. Hero Section (100vh Animasyonlu) */
.hero-section {
    height: 100vh; /* Tam ekran yüksekliği */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Header boşluğu */
    animation: fadeIn 1.5s ease-out; /* Sayfa açılışında fade-in animasyonu */
}

.hero-content h1 {
    font-size: 4rem; /* Büyük ve vurucu başlık */
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: var(--color-bg); /* Buton içi beyaz metin */
    border-radius: 30px; /* Yuvarlak kenarlar */
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: #333;
    opacity: 1;
    transform: translateY(-2px); /* Hover durumunda hafif yukarı kalkma animasyonu */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bölümler (Sections) Ortak Stil */
.section-padding {
    padding: 100px 0; /* Bölümler arası geniş boşluklar (minimalizm) */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Referanslar Slider */
.references-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px; /* Logolar için sabit yükseklik */
    filter: grayscale(100%); /* Logoları siyah beyaz yap (Premium his) */
    transition: var(--transition);
}

.references-slider .swiper-slide:hover {
    filter: grayscale(0%); /* Üzerine gelince renkli yap */
}

/* Hakkımızda Bölümü */
.about-section {
    background-color: #fafafa; /* Çok açık gri arka plan */
    text-align: center;
}

.about-section h2 {
    max-width: 700px;
    margin: 0 auto 20px;
}

/* Açık Kaynak Uygulamalar Slider */
.app-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 12px; /* Hafif yuvarlak köşeler */
    text-align: center;
    transition: var(--transition);
}

.app-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Hover durumunda hafif gölge */
    transform: translateY(-5px);
}

.app-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%; /* Yuvarlak logo */
    object-fit: cover;
}

.app-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

/* Yorumlar Slider (Müşteri Memnuniyeti) */
.reviews-section {
    background-color: var(--color-primary); /* Siyah arka plan */
    color: var(--color-bg); /* Beyaz metin */
}

.reviews-section .section-title {
    color: var(--color-bg);
}

.review-card {
    text-align: center;
    padding: 40px;
}

.review-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.review-author {
    font-weight: 600;
}

/* İletişim Formu */
.contact-section {
    background-color: #fafafa;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: 8px; /* Yumuşak köşeli form elemanları */
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary); /* Odaklanınca siyah çerçeve */
}

/* Ortaklıklar Slider */
.partnership-card {
    text-align: center;
    padding: 20px;
}

.partnership-logo {
    max-height: 50px;
    margin: 0 auto 15px;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Responsive (Mobil Uyumluluk) */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem; /* Mobilde başlık boyutu küçültüldü */
    }
    .main-navigation {
        display: none; /* Şimdilik mobilde menüyü gizle (Hamburger eklenebilir) */
    }
    .section-padding {
        padding: 60px 0; /* Mobilde boşluklar azaltıldı */
    }
}
