﻿:root {
    --forest: #2D5016;
    --sage: #87A878;
    --cream: #FFF8F0;
    --terracotta: #D4724E;
    --warm-gray: #6B5D5A;
    --soft-white: #FEFDFB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--warm-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated background elements */
.bg-decoration {
    position: fixed;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 2rem 0;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--forest);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-weight: 700;
}

nav {
    display: flex;
    gap: 2rem;
}

    nav a {
        color: var(--warm-gray);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--terracotta);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--forest);
        }

            nav a:hover::after {
                width: 100%;
            }

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--forest);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.2);
}

    .btn-primary:hover {
        background: #234010;
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(45, 80, 22, 0.3);
    }

.btn-secondary {
    background: var(--cream);
    color: var(--forest);
    border: 2px solid var(--sage);
}

    .btn-secondary:hover {
        background: var(--sage);
        color: var(--soft-white);
        transform: translateY(-2px);
    }

/* Feature Grid */
.features {
    padding: 4rem 0;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--sage), var(--terracotta));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage), var(--forest));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.feature-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Announcement Section */
.announcements {
    padding: 4rem 0;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: var(--forest);
    text-align: center;
    margin-bottom: 3rem;
}

.announcement-list {
    background: var(--soft-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.announcement-item {
    padding: 1.5rem;
    border-left: 4px solid var(--sage);
    margin-bottom: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .announcement-item:last-child {
        margin-bottom: 0;
    }

    .announcement-item:hover {
        border-left-color: var(--terracotta);
        transform: translateX(8px);
    }

.announcement-date {
    color: var(--terracotta);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.announcement-item h4 {
    color: var(--forest);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(107, 93, 90, 0.2);
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

    .footer-links a {
        color: var(--warm-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--forest);
        }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

