/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Quicksand:wght@300..700&display=swap');

@font-face {
    font-family: 'DS-Digital';
    src: local('DS-Digital'),
    url('../../assets/DS-DIGIB.woff2') format('woff2');
}

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

body, html {
    width: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    display: flex;
    flex-direction: column;
}

body, body:fullscreen::backdrop {
    background-image: radial-gradient(circle, black 3px, transparent 3px);
    background-size: 8px 8px;
    background-repeat: repeat;
    background-color: #121212;
    /* background: bisque; */
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #121212; /* Ensure background color is set */
    padding: 20px 40px;
    color: white;
    flex-shrink: 0;
}

.header h1{
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #FFFFFF;
}

p, li {
    line-height: 2;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-button {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #ff4500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #ff3300;
}

.container, .description-wrapper {
    height: calc(100vh - var(--header-height));
    display: flex;
    justify-content: center;
    align-items: center;
}

.header {
    --header-height: 80px; /* Adjust this value to match the actual header height */
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-bottom: solid 2px #ff4500;
}
.inner-container-left,
.inner-container-right {
    width: 50%;
    height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    /*
    align-items: center;
    */
    padding: 20px 40px;
}

.inner-container-left img,
.inner-container-right img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    box-shadow: #333 5px 5px 10px;
}

figcaption {
    text-align: center;
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
}

.inner-container-center {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

/* Add this to your CSS */
.parallax {
    position: relative;
    height: 800px;
    background-image: url('../../assets/images/basketball-hintergrund-ai-generation-1536x1024.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.description-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #bd3609;
}

.description-headline,
.inner-container-head {
    text-align: center;
    padding-bottom: 40px;
}

.screen {
    width: 100%;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    z-index: 2;
    padding: 40px 100px;
    flex-wrap: wrap;
    height: inherit;
}

.inner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 40px 100px;
    flex-wrap: wrap;
    height: inherit;
}

.inner-container-items {
    display: flex;
    align-items: center;
    border-top: solid 1px #CCCCCC;
    padding: 20px 0;
    gap: 20px;
}

.content-items {
    height: fit-content;
    margin: 0 100px;
}

.inner-container-head h2 {
    font-family: Orbitron, sans-serif;
    font-size: 2em;
    text-align: center;
}

.images {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.image-wrapper {
    position: relative;
}

.monitor {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(10px 10px 10px #121212);
    -webkit-filter: drop-shadow(10px 10px 10px #121212);
}

.tablet {
    max-width: 275px;
    position: absolute;
    bottom: 20px;
    left: 325px;
    transition: transform 0.3s ease;
}

.tablet:hover {
    transform: rotate(-5deg) scale(1.05);
}

.teaser-text {
    color: white;
    max-width: 500px;
}

.teaser-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.teaser-text p {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-button {
    text-decoration: none;
    background-color: #ff4500;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff3300;
}

.footer {
    background-color: #121212;
    color: white;
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
}

/* Responsive Anpassung für Smartphones */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .login-button {
        color: white;
        text-decoration: none;
        font-weight: bold;
        background-color: #ff4500;
        padding: 10px 20px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        margin: 20px 0 0 0;
    }

    .content,
    .inner-container{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        z-index: 2;
        padding: 40px 20px;
        flex-wrap: wrap;
        height: inherit;
        flex-direction: column;
    }

    .content-items {
        height: fit-content;
        margin: 0 20px;
    }

    .description-headline,
    .inner-container-head {
        text-align: center;
        padding-bottom: 0;
    }

    .inner-container-head h2 {
        text-align: center;
    }

    .inner-container-items {
        display: flex;
        flex-direction: column;
    }

    .inner-container-left,
    .inner-container-right{
        width: 100%;
        height: 100%;
        display: flex;
        flex: 1;
        flex-direction: column;
        justify-content: center;
        /*
        align-items: center;
        */
        padding: 20px 0;
    }

    .inner-container-center {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    .monitor {
        max-width: 300px;
        height: auto;
        filter: drop-shadow(10px 10px 10px #121212);
        -webkit-filter: drop-shadow(10px 10px 10px #121212);
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    font-size: 14px;
    color: #333;
}

form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.hidden {
    display: none;
}

form button {
    padding: 10px;
    background-color: #ff4500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}