/**
 * Luna Design - About Page Styles
 */

.about-wrapper {
    padding-top: 160px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

.hero-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 120px;
}

.hero-story h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-story .lead {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.split-story {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-content p em {
    display: block;
    margin-top: 24px;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
}

.story-divider {
    border: none;
    height: 1px;
    background-color: var(--border-light);
    margin: 40px 0;
    width: 60%;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media screen and (max-width: 900px) {
    .about-wrapper {
        padding-top: 120px;
    }
    
    .hero-story {
        margin-bottom: 60px;
    }
    
    .hero-story h1 {
        font-size: 2.8rem;
    }
    
    .hero-story .lead {
        font-size: 1.2rem;
    }
    
    .split-story {
        flex-direction: column-reverse;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .story-content h2 {
        font-size: 1.8rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .story-content p em {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-story h1 {
        font-size: 2.4rem;
    }
    
    .about-wrapper {
        padding-top: 100px;
    }
}
