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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eaece5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    color: #3b3a30;
    font-size: 2rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.tagline {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    color: #b2c2bf;
}

.nav-menu a.active {
    color: #3b3a30;
    border-bottom: 2px solid #b2c2bf;
}

.donate-btn {
    background-color: #b2c2bf;
    color: #3b3a30 !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    transition: background-color 0.3s;
    font-weight: 600;
}

.donate-btn:hover {
    background-color: #c0ded9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #b2c2bf 0%, #c0ded9 100%);
    color: #3b3a30;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #b2c2bf;
    color: #3b3a30;
}

.btn-primary:hover {
    background-color: #c0ded9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #3b3a30;
    border: 2px solid #3b3a30;
}

.btn-secondary:hover {
    background-color: #3b3a30;
    color: #fff;
}

.btn-facebook {
    background-color: #b2c2bf;
    color: #3b3a30;
    border: 2px solid #b2c2bf;
}

.btn-facebook:hover {
    background-color: #c0ded9;
    border-color: #c0ded9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    color: #3b3a30;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: #666;
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: #c0ded9;
}

/* CTA Section */
.cta {
    background: #3b3a30;
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon h2 {
    font-size: 3rem;
    color: #3b3a30;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
}

/* Footer */
footer {
    background-color: #3b3a30;
    color: #eaece5;
    text-align: center;
    padding: 2rem;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #eaece5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #c0ded9;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }
}

/* Donate Page Styles */
.donate-section {
    background-color: #fff;
}

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

.donate-card {
    background: linear-gradient(135deg, #b2c2bf 0%, #c0ded9 100%);
    color: #3b3a30;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.donate-card:hover {
    transform: scale(1.05);
}

.donate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.donate-card p {
    margin-bottom: 1.5rem;
}

/* Missions Page Styles */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-item h3 {
    color: #3b3a30;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mission-item p {
    color: #666;
    line-height: 1.8;
}
