:root {
    --bg-color: #Fdfbf7;
    --text-main: #1a1a1a;
    --text-light: #4a4a4a;
    --accent: #b05c3d;
    --accent-light: #e6d8d1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Progress bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #0f0f0f;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hero image of Ethiopian women */
    background-image: url('Ethiopian women -ISFL-Nespresso_web.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    color: #fff;
    max-width: 1400px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.hero-content .subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0f0f0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 13px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Article Styling */
.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content section {
    margin-bottom: 4rem;
}

.content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.content h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 1rem;
}

.content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

/* Drop Cap for Introduction */
.drop-cap::first-letter {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    color: var(--accent);
    font-weight: 700;
}

/* Images */
.article-image {
    margin: 4rem -4rem; /* Break out of content width for larger screens */
    position: relative;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

.article-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

/* Conclusion */
.conclusion {
    background-color: var(--accent-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 5rem;
}

.conclusion h2::after {
    display: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eaeaea;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 800px) {
    .article-image {
        margin: 3rem 0;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
    
    .content p {
        font-size: 1.05rem;
    }
    
    .conclusion {
        padding: 2rem;
    }
}
