/* /hakkinda/style.css */

/* --- GENEL DÜZEN --- */
.split-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-pane {
    width: 30%;
    background-color: var(--card-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid var(--border-color);
    position: relative;
    animation: slideInLeft 0.8s forwards;
}

.left-pane img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    opacity: 0;
    animation: popIn 1s 0.5s forwards;
}

.left-pane h1 { font-size: 2rem; margin-bottom: 5px; }
.left-pane h2 { font-size: 1rem; color: var(--accent-color); opacity: 0.8; }

.right-pane {
    width: 70%;
    padding: 80px 100px; /* Okuma kolaylığı için kenar boşlukları geniş */
    overflow-y: auto;
    background-color: var(--bg-color);
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s forwards;
}

/* --- METİN STİLLERİ --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 30px;
    text-align: justify;
}

/* DARTH VADER ALINTI KUTUSU (Dark Side Vibe) */
.philosophy-box {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Kırmızı bir parlama efekti (Sith Rengi) - Sadece vurgu için */
.philosophy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #ef4444; /* Vader Kırmızısı */
    box-shadow: 0 0 15px #ef4444;
}

.philosophy-title {
    color: #ef4444;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.philosophy-text {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1rem;
}

/* İMZA KISMI */
.signature {
    margin-top: 50px;
    font-family: 'Segoe Script', cursive; /* El yazısı fontu */
    font-size: 1.5rem;
    color: var(--accent-color);
    text-align: right;
}

/* Mobil */
@media (max-width: 768px) {
    .split-container { flex-direction: column; overflow: auto; }
    .left-pane, .right-pane { width: 100%; height: auto; padding: 30px; }
    .right-pane { padding: 40px 20px; }
}

/* Animasyonlar */
@keyframes slideInLeft { from {transform: translateX(-100%); opacity:0;} to {transform: translateX(0); opacity:1;} }
@keyframes fadeInUp { from {transform: translateY(30px); opacity:0;} to {transform: translateY(0); opacity:1;} }
@keyframes popIn { from {transform: scale(0.5); opacity:0;} to {transform: scale(1); opacity:1;} }