* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Arial, sans-serif;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

h1 i {
    font-style: italic;
    color: #c29e48;
}

.hero {
    position: relative;
    height: 100dvh;
    background: url("images/background-desktop.jpg") center 130px/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.top-bar {
    width: 100%;
    position: relative;
    height: 130px;
    background: url(images/bg-header.jpg) center/cover no-repeat;
    border-bottom: 10px solid rgba(255, 255, 255, 0.35);
}

.top-bar a {
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 2;
}

.logo {
    width: 90px;
}

.content {
    max-width: 45vw;
    z-index: 2;
    position: relative;
    padding: 60px 0 0 60px;
}

.content h1 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.content h1 span {
    font-weight: bold;
}

.subtitle {
    font-size: 22px;
    margin-bottom: 25px;
    color: #ddd;
}

.contact .item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact .item a {
    color: #fff;
    text-decoration: none;
}

.contact img {
    width: 24px;
}

.contact span {
    font-size: 18px;
}

.cta {
    margin-top: 30px;
    display: inline-block;
}

.cta img {
    max-width: 250px;
}

.social {
    position: absolute;
    bottom: 50px;
    right: 70px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.social img {
    height: 30px;
}

.rotate-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 9999;
}

.rotate-content {
    font-size: 20px;
}

.rotate-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-height: 500px) and (orientation: landscape) {
    .rotate-screen {
        display: flex;
    }
}

@media (max-width: 991px) {
    .hero {
        background: url("images/background-mobile.jpg") center/cover no-repeat;
    }

    .hero::after {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.65) 35%,
                rgba(0, 0, 0, 0.2) 80%,
                rgba(0, 0, 0, 0) 100%);
        z-index: 0;
    }

    .content {
        max-width: 80%;
    }

    .social {
        right: auto;
        left: 60px;
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .hero {
        background: url("images/background-mobile.jpg") center/cover no-repeat;
    }

    .top-bar {
        height: 100px;
        background: url(images/bg-header-mobile.jpg) center/cover no-repeat;
    }

    .top-bar a {
        left: 30px;
        top: 35px;
    }

    .content {
        max-width: 95%;
        padding: 30px 0 0 30px;
    }

    .content h1 {
        font-size: 22px;
    }

    .cta {
        margin-top: 20px;
    }

    .subtitle {
        font-size: 18px;
    }

    .contact span {
        font-size: 16px;
    }

    .logo {
        width: 60px;
    }

    .social {
        left: 30px;
        bottom: 40px;
    }

    .social img {
        height: 30px;
    }
}