/* assets/css/about.css */

/* Değişkenleri buraya da tanımlıyoruz ki renk bağımlılığı sürsün */
:root {
    --logo-yellow: #F2B705;
    --logo-red: #A61214;
    --logo-dark: #0d0d0d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--logo-dark);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Üst Sabit Navigasyon */
.about-top-nav {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.back-to-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}
.back-to-menu-btn:active {
    transform: scale(0.95);
    border-color: var(--logo-red);
}

.about-lang-toggle a {
    color: #888;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    margin: 0 5px;
    transition: color 0.2s;
}
.about-lang-toggle a.active {
    color: var(--logo-yellow);
}

/* Ana One-Page İçerik Kartı */
.about-main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.about-card-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column; /* Mobilde dikey alt alta düzen */
    align-items: center;
    gap: 30px;
    background: #141414;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.about-brand-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

.about-text-section {
    text-align: center;
    width: 100%;
}

.about-main-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--logo-yellow);
    letter-spacing: 0.5px;
}

.about-divider {
    width: 60px;
    height: 4px;
    background: var(--logo-red);
    margin: 15px auto;
    border-radius: 2px;
}

.about-paragraph {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

/* Footer Atıf Alanı */
.about-agency-footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    opacity: 0.4;
    letter-spacing: 1px;
}
.about-brand-code { font-weight: 700; }


/* ==========================================================================
   MASAÜSTÜ (DESKTOP) VERSİYONU
   ========================================================================== */
@media (min-width: 768px) {
    .about-card-wrapper {
        flex-direction: row; /* Masaüstünde yan yana şık katalog düzeni */
        padding: 50px;
        gap: 50px;
    }
    
    .about-logo-section {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .about-brand-logo {
        width: 220px; /* Masaüstünde dev kurumsal logo görünümü */
    }

    .about-text-section {
        flex: 2;
        text-align: left; /* Masaüstünde metinler sola yaslanır */
    }

    .about-main-title {
        font-size: 36px;
    }

    .about-divider {
        margin: 15px 0 20px 0; /* Bölücü çizgi de sola yaslanır */
    }

    .about-paragraph {
        font-size: 16px;
    }
    
    .back-to-menu-btn:hover {
        background: rgba(255,255,255,0.1);
        color: var(--logo-yellow);
    }
}