@font-face {
    font-family: 'Viga';
    src: url('../fonts/Viga-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'StackSans';
    src: url('../fonts/StackSansHeadline-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'StackSans';
    src: url('../fonts/StackSansHeadline-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'StackSans', sans-serif;
    color: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/bg_meiersalp.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 80px 20px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    width: 263px;
    margin: 0 0 40px;
}

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

h1 {
    font-family: 'Viga', sans-serif;
    font-size: 70px;
    line-height: 1.2;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.opening {
    font-family: 'StackSans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info {
    font-family: 'StackSans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.15;
    max-width: 980px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info p {
    margin: 0 0 28px;
}

.info p:last-child {
    margin-bottom: 0;
}

.contact {
    font-family: 'StackSans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-bottom: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-content {
        min-height: auto;
        padding: 30px 20px;
    }

    .logo {
        width: 180px;
        margin: 0 0 30px;
    }

    .hero-main {
        flex: initial;
    }

    h1 {
        font-size: 36px;
        line-height: 1.05;
        margin: 0 0 20px;
    }

    .opening {
        font-size: 20px;
        margin: 0 0 32px;
    }

    .info {
        font-size: 16px;
        line-height: 1.2;
        max-width: 100%;
    }

    .info p {
        margin: 0 0 18px;
    }

    .contact {
        font-size: 18px;
        line-height: 1.25;
        gap: 10px;
        padding-bottom: 10px;
        margin-top: 24px;
        flex-direction: column;
    }
}