/* styles.css */

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #B7E4C7;
    color: #1B4332;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #40916C;
    color: #081C15;
}

.navbar .logo {
    height: 50px;
    margin-right: 15px;
}

.navbar h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    background: #D8F3DC;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sermon-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.sermon-image {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sermon-description {
    font-size: 1rem;
    margin-bottom: 20px;
}

.sermon-audio {
    width: 100%;
    margin: 20px 0;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    color: #2D6A4F;
    font-weight: bold;
}

.pdf-link img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.sermon-index {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sermon-index li {
    background: #D8F3DC;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 20px;
    padding: 16px 20px;
    text-align: left;
    transition: box-shadow 0.2s;
}

.sermon-index li:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.sermon-link {
    color: #1B4332;
    text-decoration: none;
    font-size: 1.18rem;
    font-family: 'Playfair Display', serif;
}

.sermon-meta {
    font-size: 0.98rem;
    color: #40916C;
    margin-top: 6px;
    margin-bottom: 4px;
}

.sermon-description {
    font-size: 1rem;
    color: #344E41;
    margin-top: 5px;
}

@media (max-width: 800px) {
    .sermon-image {
        max-width: 100%;
    }
}