﻿
/* --- Hero --- */
.hero {
    margin-top: calc(var(--header-height, 80px));
}

.hero-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-logo {
    height: 140px;
    flex-shrink: 0;
}

.hero-text h1 {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--blue);
    font-size: 3.6rem;
}

.hero-text p {
    color: var(--green);
    font-size: 1.6rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        height: 110px;
    }
}

.hero-text h1 {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--blue);
    font-size: clamp(3rem, 6vw, 3.6rem);
    margin-bottom: 0.5rem;
}
