:root {
    --primary: #2e7d32;      /* Healing green */
    --primary-light: #e8f5e9;
    --secondary: #a5d6a7;
    --accent: #c8e6c9;
    --earth: #f6f8f5;
    --text-dark: #2b2b2b;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f8faf8;
    color: #333;
}

.navbar {
    background: linear-gradient(
        135deg,
        var(--primary),
        #1b5e20
    );
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    position: relative;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: -4px;
    left: 0;
    transition: width 0.4s ease;
}

.navbar nav a:hover::after {
    width: 100%;
}


.hero {
    height: 90vh;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ), url("../images/hero.webp") center/cover fixed no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    color: #FFF8E1;
    font-size: 44px;
    font-weight: 600;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero p {
    color: #F1F8E9;
    font-size: 20px;
    margin-top: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


@keyframes breathe {
    0% { background-size: 100%; }
    50% { background-size: 104%; }
    100% { background-size: 100%; }
}

.hero {
    animation: breathe 20s ease-in-out infinite;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
}

.btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}




.card {
    display: block;              /* IMPORTANT */
    position: relative;
    background: linear-gradient(
        180deg,
        #ffffff,
        #f9fbf9
    );
    padding: 30px 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(46, 125, 50, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}



.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .cards {
        grid-template-columns: 1fr;
    }
}


.card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.18),
        inset 0 0 0 2px rgba(46, 125, 50, 0.25);
    background: linear-gradient(
        180deg,
        #ffffff,
        #eef7ef
    );
}
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    pointer-events: none;
}



.page {
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

.list li {
    margin: 10px 0;
}

footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 12px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay { transition-delay: 0.3s; }
.delay2 { transition-delay: 0.6s; }

.cta {
    background: #e8f5e9;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    font-size: 32px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    nav a {
        margin-left: 10px;
    }
}

* {
    transition:
        background-color 0.6s ease,
        color 0.6s ease,
        box-shadow 0.6s ease,
        transform 0.4s ease;
}

.about {
    background: var(--earth);
    padding: 80px 20px;
}

.about-container {
    max-width: 900px;
    margin: auto;
}

.about h2 {
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-highlight {
    margin-top: 25px;
    padding: 20px;
    background: #ffffff;
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}


