/* ============================
   HERO SECTION
============================ */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    animation: fadeIn 1s ease-in;
    background: url("../images/hero.jpg") no-repeat center center/cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 1000px;
   /* font-size: 46px;*/
	font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero .slogan {
    font-size: 30px;
    font-weight: bold;
    color: #a2efb6;
    margin: 5px 0 15px;
}

.hero p {
    max-width: 850px;
    margin: 8px auto;
    font-size: 20px;
	line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    margin: 10px;
}

/* ============================
   ABOUT SECTION (HOME)
============================ */
.about {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about h2 {
    color: #0b6623;
    margin-bottom: 15px;
}

.about p {
    line-height: 1.8;
    font-size: 18px;
    color: #555;
}

/* ============================
   RESPONSIVE - HOME
============================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero .slogan {
        font-size: 20px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }
}