/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background-color: #faf8f3;
    color: #2a2a2a;
    line-height: 1.6;
}

/* Homepage styles */
.homepage {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px;
}

.homepage h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 32px;
}

.tagline {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 48px;
    font-style: italic;
    color: #4a4a4a;
}

.stories {
    list-style: none;
}

.story-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e1d8;
}

.story-item:last-child {
    border-bottom: none;
}

.story-item h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.story-item a {
    color: #8b6f47;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #8b6f47;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.story-item a:hover {
    color: #6b5537;
}

/* Story page styles */
.story-page {
    max-width: 650px;
    margin: 0 auto;
    padding: 80px 28px;
}

.story-page h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: 0.5px;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 80px;
}

.story-text p {
    margin-bottom: 24px;
}

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

/* End of story call-to-action */
.story-end {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e5e1d8;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.story-end a {
    color: #8b6f47;
    text-decoration: none;
    border-bottom: 1px solid #8b6f47;
    padding-bottom: 1px;
}

.story-end a:hover {
    color: #6b5537;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .homepage {
        padding: 40px 20px;
    }
    
    .homepage h1 {
        font-size: 30px;
    }
    
    .photo {
        width: 120px;
        height: 120px;
    }
    
    .tagline {
        font-size: 17px;
    }
    
    .story-item h2 {
        font-size: 20px;
    }
    
    .story-item p {
        font-size: 15px;
    }
    
    .story-page {
        padding: 60px 20px;
    }
    
    .story-page h1 {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .story-text {
        font-size: 17px;
        line-height: 1.75;
    }
}
