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

body,
html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: white;
    overflow: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    margin: 0 auto;
}

.logo-container {
    position: flex;
    margin: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
    margin-bottom: 4rem;
    max-width: 570px;
    text-shadow:
        0 0 4px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(0, 0, 0, 0.2),
        0 0 12px rgba(0, 0, 0, 0.1);
}

.headline {
    font-size: 3rem !important;
    font-weight: 600;
    line-height: 1.2;
}

.description {
    font-size: 1.4rem !important;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.025em;
    word-spacing: 0.025em;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    font-weight: 300;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.6rem !important;
    font-weight: 300;
    transition: opacity 0.3s;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 1.6rem;
}

/* Desktop */
@media (min-width: 768px) {

    .content-wrapper {
        justify-content: center;
        align-items: flex-start;
        padding-left: 5%;
    }

    .logo-container {
        top: 15%;
        right: 25%;
        left: auto;
    }

    .logo {
        width: 200px;
    }

    .main-content {
        margin-top: 0;
        margin-bottom: 0;
    }

    .headline {
        font-size: 3.5rem;
    }

    .description {
        font-size: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .content-wrapper {
        align-items: center;
        text-align: center;
        justify-content: center;
        width: 100%;
        overflow-x: hidden;
    }

    .logo-container {
        position: static;
        margin-top: 2rem !important;
        margin-bottom: -2rem !important;
    }

    .logo {
        width: 150px;
    }

    .main-content {
        align-items: center;
        margin-top: 3rem;
        margin-bottom: 0;
        background: rgba(0, 0, 0, 0.252);
        backdrop-filter: blur(30px);
        border-radius: 15px;
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
        width: auto;
        max-width: 90%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .headline {
        font-size: 2rem !important;
    }

    .description {
        max-width: 100%;
        margin: 0;
        font-size: 1.1rem !important;
    }

    .contact-info {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        font-size: 1.1rem !important;
    }

    .contact-info a,
    i {
        font-size: 1.1rem !important;
    }
}