/* ============================= */
/* HERO SECTION */
/* ============================= */

.home-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../images/hero.jpg") center/cover no-repeat;
    color: white;
    padding: 80px 20px;
    border-radius: 6px;
    margin: 20px 40px;
}

.home-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.home-hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ffd700;
    color: #333;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e6c200;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about {
    margin: 40px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================= */
/* FEATURED MEMBERS */
/* ============================= */

.featured {
    margin: 40px;
}

#featured-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Cards */
#featured-members section {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#featured-members section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Images */
#featured-members img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Links */
#featured-members a {
    display: inline-block;
    margin-top: 10px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

#featured-members a:hover {
    color: #ffd700;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 600px) {

    .home-hero {
        margin: 20px;
        padding: 60px 15px;
    }

    .home-hero h1 {
        font-size: 1.8rem;
    }

    .about,
    .featured {
        margin: 20px;
    }
}