/* --- GLOBAL RESET & TYPOGRAPHY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #f2f2f4;
    color: #1a1a1a;
    line-height: 1.8; /* Daha ferah satır aralığı */
    font-size: 1.1rem; /* Büyütülmüş genel punto */
}

/* --- HEADER & NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    background-color: #f2f2f4;
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    margin-left: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #666;
    text-decoration: underline;
}

/* --- HERO SECTION (INDEX) --- */
.hero-section {
    padding: 0 5% 50px 5%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 75vh;
    background-color: #ddd;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Yazı okunsun diye hafif karartma */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem; /* Büyük, çarpıcı başlık */
    font-weight: 900;
    text-align: center;
    width: 85%;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* --- SPLIT SECTIONS (ABOUT & CONTACT) --- */
.split-section {
    display: flex;
    padding: 40px 5% 80px 5%;
    gap: 60px; /* Görsel ve metin arası boşluk */
    align-items: flex-start;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px; /* Çok hafif yumuşatılmış köşeler */
}

/* Sayfa Başlıkları ve Metin Boşlukları */
h1.page-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 50px; /* BAŞLIK VE METİN ARASI BÜYÜK BOŞLUK */
    letter-spacing: -1px;
    line-height: 1;
}

.text-content p {
    margin-bottom: 25px; /* Paragraflar arası boşluk */
    color: #333;
}

.contact-info {
    margin-top: 40px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- CONTACT FORM --- */
.contact-form {
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #555;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ccc;
    background-color: transparent;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #1a1a1a;
}

.submit-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #444;
}

/* --- MOBILE RESPONSIVE AYARLARI (Patlamaları önleyen ve sıralamayı değiştiren kısım) --- */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column; 
        gap: 0; /* Boşlukları marginlerle yöneteceğimiz için sıfırladık */
    }

    /* İŞTE SİHİRLİ DOKUNUŞ BURASI */
    .text-content {
        display: contents; /* Kutuyu kırıp içindekileri serbest bırakır */
    }
    
    h1.page-title {
        order: 1; /* Başlık en üste */
        font-size: 3rem; 
        margin-bottom: 30px;
    }
    
    .text-content p, .contact-info {
        order: 2; /* Yazılar başlığın hemen altına */
    }
    
    .image-content {
        order: 3; /* FOTOĞRAF YAZILARDAN SONRA GELECEK */
        width: 100%;
        margin: 30px 0 40px 0; /* Görselin üstüne ve altına nefes alma boşluğu */
    }

    .contact-form {
        order: 4; /* FORM EN ALTA İTİLDİ */
        width: 100%;
        margin-top: 0;
    }
    
    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 5%;
    }

    nav a {
        margin: 0 15px;
    }

    .hero-text {
        font-size: 2.2rem; 
        width: 95%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.site-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    background-color: #f2f2f4;
    border-top: 1px solid #e3e3e7;
    text-align: center;
    z-index: 1000;
}

.site-footer p {
    margin: 0;
    font-size: 0.78rem;
    color: #7a7a7a;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.2px;
}