/* BASIS RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: url("https://abc-dierenarts.nl/bg.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 720px;
    padding: 2rem;
    color: #fff;
    z-index: 2;
}

/* LOGO */
.logo {
    max-width: 160px;
    border-radius: 8px;
    background: #fff;
    padding: 0.3rem;
    margin-bottom: 1.2rem;
}

/* TITELS */
h1 {
    font-size: 3rem;
    letter-spacing: 1px;
}

.tagline {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 300;
}

.coming-soon {
    margin-top: 1.2rem;
    opacity: 0.85;
    font-size: 1rem;
}

/* CTA BUTTON */
.cta {
    margin-top: 1.8rem;
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #3ccf7a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: all .15s ease-in-out;
}

.cta:hover,
.cta:focus {
    background: #2fa462;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 600px) {

    h1 {
        font-size: 2.3rem;
    }

    .logo {
        max-width: 120px;
    }
}