* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #000;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 768px;

    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.22),
            rgba(0, 0, 0, 0.52)
        );
}

.content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    padding: 30px;

    text-align: center;
    color: #ffffff;

    transform: translateY(-20px);
}

h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 1px;

    margin-bottom: 24px;

    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.75);
}

.divider {
    width: 350px;
    height: 2px;

    margin: 0 auto 28px auto;

    background: rgba(255, 255, 255, 0.85);
}

.years {
    font-size: 1.65rem;
    letter-spacing: 2px;

    margin-bottom: 24px;

    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.message {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.45;

    margin-bottom: 18px;

    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
}

.contact-button {
    display: inline-block;

    margin-top: 20px;
    padding: 14px 34px;

    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 5px;

    color: #ffffff;
    text-decoration: none;

    font-size: 1.3rem;
    font-weight: 600;

    background: rgba(0, 0, 0, 0.18);

    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        background-position: center center;
    }

    .content {
        padding: 24px;
        transform: none;
    }

    h1 {
        font-size: 2.7rem;
    }

    .divider {
        width: 190px;
    }

    .years {
        font-size: 1.15rem;
    }

    .message {
        font-size: 1rem;
    }

    .contact-button {
        font-size: 1rem;
        padding: 12px 22px;
    }
}