/* =========================================
   home.css - HERO & ABOUT SECTIONS
   ========================================= */

/* --- HERO SECTION --- */
.hero {
    height: calc(100vh - 80px);
    background: url('https://img1.wsimg.com/isteam/ip/4ecc59f4-709d-4dc1-bb91-b55357ee8cee/blob.png') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.65);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.cta-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-button:hover {
    background: #2a70d7;
}

/* --- ABOUT SECTION --- */
.about {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.card p {
    color: var(--nav-grey);
    font-size: 15px;
}