@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SUSE', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    max-width: 37.5rem;
    margin: 0 auto;
    padding: 1.25rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Banner */
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 15px 0;
    margin: 0 0 30px 0;
}

.banner img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.banner span {
    font-size: 1.35rem;
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
    color: #1a365d;
    font-weight: 600;
}

/* Header */
header h1 {
    text-align: center;
    color: #1A1A1A;
    background: #f4f4f4;
    padding: 1.175rem;
    border-radius: 10px;
    text-transform: capitalize;
    font-size: 1.75rem;
}

/* Main Content */
main {
    padding: 20px 0;
}

.greeting {
    margin: 10px 0 0 0;
    /* font-size: 1.25rem; */
}

.opener {
    margin: 20px 0;
    line-height: 1.7;
}

#titheAmount {
    color: #007f2e;
    font-weight: 600;
}

/* Quote Section */
.quote {
    background-color: #e8f4ff;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #1a75d2;
    font-style: italic;
    line-height: 1.7;
}

.quote__source {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #666;
    text-align: right;
}

/* Appreciation Section */
.appreciation {
    margin: 30px 0;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
}

footer p {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem 0;
    font-size: 0.75rem;
}

.footer__church-details {
    margin: 0.5rem auto;
    padding: 0 0.5rem 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.footer__church-details > span {
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.25rem;
}

.footer__copyright {
    margin-top: 25px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

/* Copyright section outside footer */
.copyright {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.7rem;
    color: #888;
    padding: 0.5rem 0;
    border-top: 1px solid #e5e5e5;
}

.copyright p {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .banner {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    header h1 {
        font-size: 1.5rem;
    }
    
    .footer__church-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer__church-details .left {
        padding-right: 0;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }
    
    .footer__church-details .left::after {
        display: none;
    }
}
