/* Serene Spaces Compassionate Fund Website Styles */

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

body {
    font-family: Garamond, Georgia, serif;
    line-height: 1.7;
    color: #333;
    background-color: #FAFAFA;
}

/* Header */
header {
    background-color: #6B8E71;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heart {
    font-size: 2rem;
    color: white;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #B8D4A8 0%, #6B8E71 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #6B8E71;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

section {
    margin-bottom: 3rem;
}

h2 {
    color: #6B8E71;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    color: #6B8E71;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Info Boxes */
.info-box {
    background-color: #E8F5E8;
    border: 2px solid #6B8E71;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.donation-box {
    background-color: #B8D4A8;
    border: 2px solid #6B8E71;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.impact-item {
    background-color: #F0F8F0;
    border: 2px solid #6B8E71;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.impact-item .amount {
    color: #6B8E71;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background-color: white;
    border: 2px solid #B8D4A8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Who We Serve */
.serve-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.serve-item {
    background-color: #E8F5E8;
    color: #6B8E71;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Contact Section */
.contact-info {
    background-color: #B8D4A8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    font-size: 1.2rem;
}

.contact-item strong {
    color: #6B8E71;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #6B8E71;
}

/* Footer */
footer {
    background-color: #6B8E71;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .impact-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}
