/* Import the custom font */
@font-face {
    font-family: 'LilitaOne';
    src: url('police.ttf') format('truetype');
}

/* PC */
@media (min-width: 1024px) {
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
        font-family: 'LilitaOne', sans-serif;
        background-color: #ffffff;
        color: #333;
    }

    header {
        background-color: #fff;
        padding: 40px 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 50px;
    }

    nav ul li a {
        text-decoration: none;
        color: #333;
        font-size: 1.5rem;
    }

    .main-section {
        background-image: url('background.jpg');
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .logo-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-container img {
        width: 600px;
        transition: transform 0.3s;
    }

    .logo-container img:hover {
        transform: scale(1.1);
    }

    .buttons-container-left {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-right: 50px;
    }

    .buttons-container-left a img {
        width: 250px;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .buttons-container-left a img:hover {
        transform: scale(1.1);
    }

    .main-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-section .buttons-container-left {
        position: absolute;
        left: calc(50% - 500px); /* Positioniere Buttons links vom Logo */
    }

    .buttons-container-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-left: 50px;
    }

    .buttons-container-right a img {
        width: 250px;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .buttons-container-right a img:hover {
        transform: scale(1.1);
    }

    .main-section .buttons-container-right {
        position: absolute;
        left: calc(50% + 200px); /* Positioniere Buttons rechts vom Logo */
    }

    /* Dicker Strich zwischen den Backgrounds */
    .separator {
        width: 100%;
        height: 8px; /* Dicke des Strichs */
        background-color: #000; /* Farbe des Strichs */
        margin: 0 auto; /* Mittig positioniert */
    }

    footer {
        background-image: url('banner.png');
        background-size: cover; /* Der Hintergrund füllt jetzt die gesamte Fläche aus */
        background-position: center;
        background-repeat: no-repeat;
        text-align: center;
        padding: 100px 0;
        margin-top: 0px;
    }

    footer p {
        font-size: 3rem;
        color: #fff;
    }

    .footer-content p:last-child {
        font-size: 1rem;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-content p:last-child::before {
        margin-right: 8px;
        width: 24px;
        height: 24px;
    }
}

/* Handy */
@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'LilitaOne', sans-serif;
        background-color: #ffffff;
        color: #333;
    }
    
    header {
        background-color: #fff;
        padding: 40px 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    nav ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 50px;
    }
    
    nav ul li a {
        text-decoration: none;
        color: #333;
        font-size: 1.5rem;
    }
    
    .main-section {
        background-image: url('../img/background1.jpg');
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    /* Logo wird ausgeblendet */
    .logo-container {
        display: none;
    }
    
    .buttons-container-left,
    .buttons-container-right {
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        margin-left: 35px;
    }
    
    /* Buttons zentriert und untereinander */
    .buttons-container-left a img,
    .buttons-container-right a img {
        width: 250px;
        cursor: pointer;
        transition: transform 0.3s;
    }
    
    .buttons-container-left a img:hover,
    .buttons-container-right a img:hover {
        transform: scale(1.1);
    }
    
    .separator {
        width: 100%;
        height: 8px;
        background-color: #000;
        margin: 0 auto;
    }
    
    footer {
        background-image: url('../img/background2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        text-align: center;
        padding: 100px 0;
        margin-top: 0px;
    }
    
    footer p {
        font-size: 3rem;
        color: #fff;
    }
    
    .footer-content p:last-child {
        font-size: 1rem;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-content p:last-child::before {
        margin-right: 8px;
        width: 24px;
        height: 24px;
    }
}