/* =============================================== */
/* ABOUT LEXY SAYFASI - SADE VE AKICI TASARIM */
/* =============================================== */

:root {
    --lexy-primary: #2c5530;
    --lexy-primary-light: #4a7c59;
    --lexy-primary-dark: #1e3a23;
    --lexy-secondary: #8fb996;
    --lexy-accent: #e6b450;
    --lexy-copper: #E56717;
    --lexy-bg: #f8f5f0;
    --lexy-white: #ffffff;
    --lexy-dark: #2d2a24;
    --lexy-gray: #5a554d;
    --lexy-light-gray: #7a756d;
    --lexy-border: #e8e2d6;
}

.about-lexy-page {
    background: var(--lexy-bg);
}

/* =============================================== */
/* ANA İÇERİK */
/* =============================================== */

.about-lexy-main {
    padding: 60px 0;
    min-height: calc(100vh - 60px);
}

.about-lexy-main .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================== */
/* LEXY GÖRSELİ */
/* =============================================== */

.about-lexy-image {
    text-align: center;
    margin-bottom: 30px;
}

.lexy-profile-image {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =============================================== */
/* BAŞLIKLAR */
/* =============================================== */

.about-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--lexy-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--lexy-gray);
    margin-bottom: 50px;
    font-style: italic;
}

/* =============================================== */
/* HİKAYE METNİ */
/* =============================================== */

.story-text {
    background: var(--lexy-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--lexy-border);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--lexy-dark);
    margin-bottom: 25px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-subheading {
    font-size: 1.8rem;
    color: var(--lexy-copper);
    margin: 40px 0 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.story-subheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--lexy-accent);
    border-radius: 2px;
}

/* =============================================== */
/* FİNAL MESAJI */
/* =============================================== */

.final-message {
    margin: 50px 0 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--lexy-primary-light), var(--lexy-primary));
    border-radius: 16px;
    color: white;
    text-align: center;
}

.final-message p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    color: white;
}

/* =============================================== */
/* SOSYAL MEDYA */
/* =============================================== */

.social-follow {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--lexy-border);
}

.social-follow h3 {
    font-size: 1.3rem;
    color: var(--lexy-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--lexy-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lexy-primary);
    font-size: 1.3rem;
    transition: all 0.3s;
    border: 1px solid var(--lexy-border);
}

.social-icon:hover {
    background: var(--lexy-primary);
    color: white;
    transform: translateY(-3px);
}

/* =============================================== */
/* MOBİL UYUMLULUK */
/* =============================================== */

@media (max-width: 768px) {
    .about-lexy-main {
        padding: 40px 0;
    }
    
    .lexy-profile-image {
        width: 140px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .story-text {
        padding: 30px 20px;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .story-subheading {
        font-size: 1.5rem;
        margin: 30px 0 15px;
    }
    
    .final-message {
        padding: 25px 20px;
    }
    
    .final-message p {
        font-size: 1.1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .story-text {
        padding: 25px 15px;
    }
    
    .story-subheading {
        font-size: 1.3rem;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* =============================================== */
/* DARK MODE */
/* =============================================== */

body.dark-mode .about-lexy-page {
    background: #1a1a1a;
}

body.dark-mode .about-title {
    color: var(--lexy-secondary);
}

body.dark-mode .about-subtitle {
    color: #aaa;
}

body.dark-mode .story-text {
    background: #2a2a2a;
    border-color: #404040;
}

body.dark-mode .story-text p {
    color: #e0e0e0;
}

body.dark-mode .story-subheading {
    color: var(--lexy-accent);
}

body.dark-mode .social-follow {
    border-top-color: #404040;
}

body.dark-mode .social-follow h3 {
    color: #e0e0e0;
}

body.dark-mode .social-icon {
    background: #333;
    border-color: #404040;
    color: #ccc;
}

body.dark-mode .social-icon:hover {
    background: var(--lexy-primary);
    color: white;
}