:root {
    --primary: #544BCC;
    --white: #FFFFFF;
    --gray: #898BAC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: #08080E url('img/desktop.jpg') center/cover no-repeat fixed;
    overflow-x: hidden;
}

.main-wrapper { display: flex; min-height: 100vh; align-items: center; }

/* --- DESKTOP AYARLARI --- */
.hero-image { margin-left: 150px; display: flex; align-items: flex-end; height: 100vh; }
.hero-image img { height: 95vh; width: auto; object-fit: contain; }

.content-side { flex: 1; display: flex; justify-content: center; padding: 50px; }
.inner-content { max-width: 500px; width: 100%; display: flex; flex-direction: column; }

/* Desktop Spacing: İsim bloğu ve Form arası 90px */
.header-texts { margin-bottom: 90px; } 

.name { font-size: 64px; font-weight: 800; line-height: 1.1; background: linear-gradient(to right, var(--white), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.title { font-size: 36px; font-weight: 400; background: linear-gradient(to right, var(--primary), var(--white)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.input-box { display: flex; border: 1px solid var(--white); border-radius: 12px; padding: 6px; background: rgba(0,0,0,0.3); }
input { background: transparent; border: none; color: white; padding: 15px; flex: 1; outline: none; }
input::placeholder { color: var(--gray); }
.info-text { color: var(--gray); font-size: 13px; margin-top: 10px; }
.input-box button { background: var(--white); color: #000; border: none; padding: 0 25px; border-radius: 8px; font-weight: 700; cursor: pointer; }

.action-buttons { display: flex; gap: 15px; margin: 30px 0; }
.btn { padding: 14px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.btn-cv { background: var(--primary); color: white; }
.btn-mail { background: transparent; border: 1px solid var(--primary); color: white; }
.btn-mail img { width: 18px; }

.social-footer { display: flex; align-items: center; gap: 20px; }
.icons img, .brand-logo img { height: 24px; width: auto; }
.vertical-line { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* --- MOBİL REVİZE (%25 BÜYÜK FOTO & ÜST ÜSTE DÜZEN) --- */
@media (max-width: 1024px) {
    body { background-image: url('img/mobil.jpg'); }

    .main-wrapper { 
        flex-direction: column; 
        justify-content: flex-start;
        height: 100vh;
    }

    /* Fotoğraf %25 büyük (Desktop referansına göre) */
    .hero-image {
        margin-left: 0;
        height: 50vh; 
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        z-index: 1;
    }
    .hero-image img { 
        height: 110%;
        width: auto;
        max-width: 500px; /* Görseli baskın tutar */
        object-fit: contain; 
    }

    /* İçerik Fotoğrafın Üzerinde Ortalı */
    .content-side {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        z-index: 2;
        background: linear-gradient(to bottom, transparent, rgba(8,8,14,0.7) 70%);
    }

    /* Mobilde 90px çok fazla olacağı için düşürüldü */
    .header-texts { margin-bottom: 25px; text-align: center; }
    .name { font-size: 42px; }
    .title { font-size: 22px; }

    .action-group { width: 100%; text-align: center; }
    .input-box { width: 100%; max-width: 400px; margin: 0 auto; }

    .action-buttons { 
        flex-direction: column; 
        width: 100%; 
        max-width: 400px; 
        margin: 20px auto; 
    }
    .btn { width: 100%; justify-content: center; }

    .social-footer { 
        flex-direction: row; 
        justify-content: center; 
    }
    .icons img, .brand-logo img { height: 18px; }
}