/* ==========================================================================
   NAERON Landing Page - V2 Stil Dosyası
   Bu dosya, harici hiçbir kütüphaneye ihtiyaç duymadan sayfanın tüm
   tasarımını, tipografisini, asimetrik kart yapısını ve açılış animasyonunu yönetir.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Temel Sıfırlama ve Genel Tanımlar (CSS Reset & Base)
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   2. Sayfa Kapsayıcısı ve Karartılmış Arka Plan (Page Wrapper & Darkened Background)
   -------------------------------------------------------------------------- */
.page-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    /* Odak dağılmasını engellemek için arka plana %50 koyulukta karartma katmanı eklendi */
    background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)), 
                url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   3. Merkez Kart Bileşeni (Card Container)
   -------------------------------------------------------------------------- */
.card-container {
    display: flex;
    flex-direction: row;
    align-items: center; /* Sağ panel dikeyde ortalanır ve sol panelden daha kısa görünür */
    width: 100%;
    max-width: 720px;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
    
    /* Sayfa açılışında aşağıdan yukarı yaylanarak gelen animasyon */
    animation: enterUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* --------------------------------------------------------------------------
   4. Sol Panel: Görsel ve Buton Bölümü (Left Media Side - Daha Yüksek)
   -------------------------------------------------------------------------- */
.card-side-media {
    width: 280px;
    flex-shrink: 0;
    background-color: #237bb9; /* naeron_side.jpg arka plan tonuyla eşleşen renk */
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.media-image-wrapper {
    width: 100%;
    height: 470px;
    margin-top: -70px;
}

.side-image {
    width: 100%;
    height: auto;
    display: block;
}

.media-actions {
    width: 100%;
    padding: 0 24px;
    margin-top: 15px;
}

/* Ana Eylem Butonu (NAERON.COM Butonu) */
.btn-primary {
    display: block;
    width: 100%;
    background-color: #f36f45;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 11px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background-color: #e2582d;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   5. Sağ Panel: İçerik ve Detaylar (Right Content Side - Daha Kısa ve Ortalanmış)
   -------------------------------------------------------------------------- */
.card-content {
    flex: 1;
    padding: 36px 32px;
    background-color: #ffffff;
    border-radius: 0 4px 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Başlık Grubu */
.content-header .brand-tag {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.content-header .main-title {
    font-size: 22px;
    font-weight: 600;
    color: #ff5722;
    margin: 2px 0 4px 0;
    line-height: 1.25;
}

.content-header .sub-title {
    font-size: 13.5px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Ayırıcı İnce Çizgi */
.divider {
    border: 0;
    border-top: 1px solid #e8e8e8;
    margin: 18px 0;
}

/* Lokasyon Bilgisi */
.contact-info {
    display: flex;
    flex-direction: row;
    margin-bottom: 6px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: #999999;
    margin-bottom: 4px;
}

.info-value {
    font-size: 13.5px;
    color: #222222;
    font-weight: 700;
    text-decoration: none;
}

/* Biyografi ve Açıklama Metni */
.description-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #888888;
    margin: 16px 0 6px 0;
}

.description-text {
    font-size: 12px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
    text-align: justify;
}

/* --------------------------------------------------------------------------
   6. Alt Bilgi (Footer / Telif & Şirket Ünvanı)
   -------------------------------------------------------------------------- */
.page-footer {
    position: absolute;
    bottom: 14px;
    width: 100%;
    text-align: center;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.3px;
}

/* --------------------------------------------------------------------------
   7. Animasyonlar (Animations)
   -------------------------------------------------------------------------- */
/**
 * enterUp Animasyonu:
 * Sayfa ilk yüklendiğinde kart bileşeninin aşağıdan yumuşak bir ivmeyle
 * yukarı doğru kayarak ve görünür hale gelerek belirmesini sağlar.
 */
@keyframes enterUp {
    0% {
        opacity: 0;
        transform: translateY(140px);
    }
    75% {
        transform: translateY(-6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   8. Mobil Uyumluluk (Responsive Breakpoints)
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
    .card-container {
        flex-direction: column;
        max-width: 380px;
    }

    .card-side-media {
        width: 100%;
        border-radius: 4px 4px 0 0;
        padding-bottom: 20px;
    }

    .card-content {
        width: 100%;
        border-radius: 0 0 4px 4px;
        padding: 26px 22px;
    }

    .page-footer {
        position: static;
        margin-top: 24px;
        font-size: 11px;
    }

    .media-image-wrapper {
        height: 460px;
        margin-top: -90px;
    }

}
