/* =========================
   HERO
========================= */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    padding: 120px 24px 140px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.hero-text {
    max-width: 520px;
}

.hero-text h1 {
    font-size: clamp(56px, 9vw, 96px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.85;
    margin-bottom: 16px;
}

.motto {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* =========================
   ABOUT
========================= */
.about {
    max-width: 700px;
    margin: auto;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    color: var(--muted);
    font-size: 17px;
}

/* =========================
   FEATURES
========================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.feature {
    padding: 28px 24px;
    background: var(--card);
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature span {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}

.feature h3 {
    margin: 12px 0 10px;
    font-size: 18px;
}

.feature p {
    color: var(--muted);
    font-size: 15px;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   COMMUNITY
========================= */
.community {
    max-width: 720px;
    margin: auto;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--card);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-card span.material-icons {
    font-size: 28px;
    opacity: 0.8;
}

.social-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.social-card span {
    font-size: 14px;
    color: var(--muted);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 16px 80px;
        text-align: center;
    }

    .hero-image {
        display: none; /* Hide hero image on mobile */
    }

    .hero-text {
        margin: auto;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features {
        grid-template-columns: 1fr; /* Stack features vertically on mobile */
        gap: 24px;
    }

    .feature {
        text-align: center;
        padding: 24px 20px;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .social-card {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 18px;
    }

    .social-card span.material-icons {
        margin-bottom: 8px;
    }
}
