body {
    font-family: 'Raleway', sans-serif;
}

.sm-title,
.sm-tagline {
    font-family: 'Playfair Display', serif;
}

.sm-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sm-hero-bg {
    position: absolute;
    inset: 0;

    background-image: url('/wp-content/uploads/2026/05/hotel-saint-michael-trnava-exterier.webp');

    background-size: cover;
    background-position: center;

    transform: scale(1.05);

    animation: heroZoom 12s ease-out forwards;
}

.sm-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1;
}

.sm-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
}

.sm-topbar {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;

    display: flex;
    justify-content: space-between;

    padding: 0 60px;

    font-size: 12px;
    letter-spacing: .35em;
    opacity: .9;

    animation: fadeIn 1.5s ease;
}

.sm-stars {
    font-size: 32px;
    color: #bfa76a;
    margin-bottom: 25px;

    animation: fadeUp 1s ease forwards;
}

.sm-subtitle {
    font-size: 14px;
    letter-spacing: .45em;
    text-transform: uppercase;
    margin-bottom: 20px;

    color: #4db8c4;

    animation: fadeUp 1.2s ease forwards;
}

.sm-title {
    font-size: clamp(48px,
        8vw,
        110px);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.05;
    color: white;

    margin-bottom: 25px;

    animation: fadeUp 1.2s ease forwards;
}

.sm-tagline {
    font-size: 28px;
    font-style: italic;
    margin-bottom: 45px;
    opacity: .9;

    animation: fadeUp 1.6s ease forwards;
}

.sm-button {
    display: inline-block;

    border: 1px solid #5ec7d4;

    padding: 18px 40px;
    font-size: 16px;

    letter-spacing: .25em;

    color: #5ec7d4;

    text-decoration: none;

    transition: .3s;

    animation: fadeIn 2s ease forwards;
}

.sm-button:hover {
    background: #5ec7d4;
    color: #fff;
}

.sm-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    font-size: 34px;

    animation: bounce 2s infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@media(max-width:768px) {

    .sm-hero {
        min-height: 100svh;
    }

    .sm-topbar {
        padding: 0 20px;
        top: 25px;
        font-size: 10px;
    }

    .sm-title {
        font-size: 56px;
    }

    .sm-tagline {
        font-size: 16px;
        line-height: 1.5;
    }

    .sm-button {
        padding: 15px 28px;
        font-size: 13px;
    }

}