/*
 * hero.css — Full-Viewport Hero Section
 * HuaHinExpats.info
 */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(160deg, rgba(13, 27, 42, 0.72) 0%, rgba(21, 101, 192, 0.45) 50%, rgba(230, 81, 0, 0.35) 100%),
        url('https://images.unsplash.com/photo-1568376794508-ae52c6ab3929?w=1800&q=85') center 40% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    position: relative;
}

/* SVG wave at hero bottom edge */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23F8FBFF' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
}

.hero-inner {
    max-width: 860px;
    position: relative;
    z-index: 1;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 168, 37, 0.18);
    border: 1px solid rgba(249, 168, 37, 0.5);
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 24px;
    animation: fadeUp 0.7s ease both;
}

/* H1 */
.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent-o { color: var(--orange-lt); }
.hero h1 .accent-g { color: #69F0AE; }

/* Subheading */
.hero-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.90);
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 400;
    animation: fadeUp 0.9s ease 0.2s both;
}

/* CTA buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.3s both;
}
