@font-face {
    font-family: 'Jatura';
    src: url('./font/Jaturat.ttf') format('truetype');
    font-style: normal;
}

body {
    overflow-x: hidden;
	max-width: 100%;
    margin: 0;
    flex-wrap: wrap;
    padding: 0;
    font-family: 'Jatura', sans-serif;
    background-color: #fff;
    color: #000;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOutDown { 
    0% { 
        opacity: 1; 
        transform: translateY(0); 
    } 
    100% { 
        opacity: 0; 
        transform: translateY(20px); }
    }

header {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid rgba(0, 0, 0, 0.074);
}

header img {
    max-width: 100%;
    height: auto;
}

nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 15px;
        z-index: 10; /* Höher als andere Elemente wie Hintergrundvideos oder überlagernde Container */
        position: relative; /* Damit der Z-Index wirksam ist */
}

nav a {
    text-decoration: none;
    color: #000;
}

nav a:hover {
    color: #777;
}

.main-logo {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

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

.angebot {
    font-weight: 400;
    text-align: center;
    text-shadow: 2px 2px 4px #0000001e;
    margin: 60px auto;
}

.angebot h2 {
    font-size: 48px; /* Vergrößert die Überschrift */
    margin-bottom: 20px;
}

.angebot h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.angebot p {
    font-size: 20px; /* Vergrößert den Text */
    color: #777;
    margin-bottom: 40px;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.leistungen {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    align-items: flex-start;
    margin-left: 30%;
    padding-left: 0;
}

.leistung-item {
    margin-bottom: 30px; /* Vergrößert den Abstand zwischen den Elementen */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.leistung-item li {
    margin-left: 0;
    padding-left: 0;
    font-size: 24px; /* Vergrößert den Text */
}

.leistung-item .preis {
    color: red;
    text-decoration: none;
    font-size: 18px; /* Vergrößert die Preisangabe */
    margin-top: -4px; /* Abstand zwischen dem Listenelement und dem Preis */
}

.preis a{
    color: red;
    text-decoration: none;
}

.preis a:hover{
    color: rgb(166, 0, 0);
}

.galerie {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto; /* Verhindert unerwünschte Seitwärtsbewegung */
    padding: 0 20px; /* Sorgt für etwas Abstand an den Seiten */
}

.galerie img, 
.galerie video {
    width: 100%;
    max-width: 300px; /* Verhindert, dass Bilder zu groß werden */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mehr-link {
    text-align: center;
    margin-top: 30px;
}

.mehr-link a {
    color: red;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.headerlogotext {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    text-shadow: 2px 2px 4px #00000019;
}

.image-container {
    text-align: center;
    margin: 5%;
    margin-left: 20%;
    margin-top: 60px;
}

.dm {
    margin-left: -40%;
    max-width: 100%;
    margin-left: auto;
    height: auto;
    cursor: pointer;
}

.designinbg {
    height: 700px; /* Vergrößert das Design-Hintergrundbild */
    margin-top: -5%;
    margin-right: 10%;
}

/* Neue/aktualisierte Styles für die Video-Container */
.video-container {
    width: 220px;  /* Feste Breite */
    min-width: 220px; /* Minimale Breite */
    height: auto;
    margin: 10px;
}

.galerie video {
    width: 100%;  /* Video füllt den Container */
    height: auto;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galerie video:hover {
    transform: translateY(-15px); /* Anheben der Videos bei Hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.no-right-click video {
    pointer-events: none;
}

video {
    pointer-events: all;
    max-width: 100%;
    height: 100%;
}
        .footer {
            font-family:'Jatura', sans-serif;
            background-color: #ffffff;
            color: #000000;
            padding: 40px 20px;
            display: flex;
            text-align: center;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        .footer-column {
            flex: 1;
            margin: 10px;
            min-width: 200px;
        }
        .footer h3 {
            font-size: 35px;

            padding-bottom: 10px;
        }
        .footer a {
            color: #000000;
            text-decoration: none;
            display: block;
            margin: 5px 0;
        }
        .footer a:hover {
            color: #0000006e;
        }
        .footer .contact-info {
            margin: 10px 0;
        }
        .footer .contact-info p {
            margin: 5px 0;
        }
        .social-icons {
            display: flex;
            gap: 10px;
        }
        .social-icons a {
            color: #000000;
            font-size: 24px;
            text-decoration: none;
        }
        .footer-bottom {
            text-align: center;
            padding: 10px 0;
            border-top: 1px solid #333;
            margin-top: 20px;
            color: #000000;
        }  
        
        .about-section {
            display: none;
            padding: 20px;
            text-align: center;
            background-color: #ffffff00;
            border-top: 2px solid #dddddd00;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .about-section.active {
            display: block;
            animation: fadeInUp 0.3s ease-out forwards;
        }
        
        .about-section.inactive {
            display: block;
            animation: fadeOutDown 1s ease-out forwards;
        }
        
        .about-section p, .about-section ul {
            margin: 10px 0;
            color: #333;
        }
        
        .dropdownaboutus-button,
        .hide-section-button {
            all: unset; /* Resetet alle Standardstile */
            display: block;
            background-color: #fffcfc00;
            padding: 10px 20px;
            border: 1px solid;
            border-radius: 10px;
            font-size: 16px;
            text-align: center;
        }
        
        .dropdownaboutus-button {
            color: #00000000;
            margin-top: -5%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .clickaboutus{
            margin-left: 1%;
            justify-content: center;
            align-items: center;
            height: 200px;
        }
        
        .hide-section-button {
            color: rgb(111, 0, 0);
            margin-left: 46%;
        }
        .dropdownaboutus-button:hover{
            opacity: 0.8;  /* Bild wird leicht transparent */
            transform: scale(1.1);  /* Bild wird beim Hover leicht vergrößert */
            background-color: #00000000;
            color: #00000000;
    }
        
    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: #fff;
        padding: 20px;
        visibility: hidden; /* Sidebar zu Beginn verstecken */
        transition: width 0.5s ease; /* Übergangsanimation für Breite */
        z-index: 1000;
        overflow-y: auto; /* Scrollbarkeit aktivieren */
    }
    
    .sidebar-open {
        width: 300px; /* Breite, wenn die Sidebar geöffnet ist */
        visibility: visible; /* Sidebar sichtbar machen */
    }
/* Blur-Effekt für den Hintergrund, aber nicht für die Sidebar */
body.blurred > *:not(#about-section) {
    filter: blur(5px); /* Leichter Blur-Effekt auf alles außer der Sidebar anwenden */
    transition: filter 0.5s ease; /* Sanfte Übergangsanimation für den Blur-Effekt */
    overflow: auto; /* Keine Änderungen an der Scrollbarkeit bei Blur */
}
body.no-scroll {
    overflow: hidden; /* Verhindert das Scrollen */
}
/* Stil für das Bild im Sidebar */
.jaboutus {
    width: 50%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}

/* Spezifischer Stil für andere Elemente wie Titel oder Text */
h1, h2, p, li {
    font-family: 'Jatura', sans-serif;
    color: #333;
}


    .hide-section-button {
        border: 1px solid red;
        color: black;
        padding: 10px 20px;
        text-align: center;
        cursor: pointer;
        font-size: 16px;
        border-radius: 5px;
        display: block;
        margin: 20px auto;
        width: 80%;
    }

    .sidebar button:hover {
        background-color: #ff010159;
    }

    /* Body content styles (damit es nicht von der Sidebar überdeckt wird) */
    .content {
        padding: 20px;
    }
            /* Keyframes für Schließanimation */
            @keyframes slideOut {
                from {
                    transform: translateX(0);
                }
                to {
                    transform: translateX(100%);
                }
            }
    
            .sidebar.closing {
                animation: slideOut 0.5s ease forwards;
            }
    
.jaboutus{
    height: 160px;
    width: 60%;
    border-radius: 100%;
}

.no{
    color: #00000000;
}

@media screen and (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
    }

    .profile img {
        width: 100px; /* Bildgröße für mobile Geräte */
        height: 100px; /* Bildgröße für mobile Geräte */
    }

    .profile p {
        font-size: 16px; /* Schriftgröße für mobile Geräte */
    }

    .galerie {
        margin-left: 0;  /* Entfernt den negativen Margin auf mobilen Geräten */
        justify-content: center;
    }
    
    .video-container {
        width: 220px;  /* Behält die gleiche Breite bei */
        min-width: 220px;
        margin: 10px;
    }

    .image-container{
        margin-left: -10px;
    }
}
/* Media Query für mobile Geräte */
@media screen and (max-width: 768px) {
    .galerie {
        margin-left: 0;  /* Entfernt den negativen Margin auf mobilen Geräten */
        justify-content: center;
        margin-top: -500px;
    }
    
    .video-container {
        width: 220px;  /* Behält die gleiche Breite bei */
        min-width: 220px;
        margin: 10px;
    }
}
@media screen and (max-width: 768px) {
table {
    width: -10%; /* Angepasste Breite der Tabelle */
    margin-left: -3%; /* Zentriert die Tabelle horizontal */
    }

    td, th {
        text-align: center; /* Zentriert den Text in den Tabellenzellen */
        vertical-align: middle; /* Vertikal zentriert den Text */
    }
}

table {
    width: 100%; /* Breite der Tabelle */
    border-collapse: collapse;
    text-align: center;
    position: absolute; /* Absolute Positionierung */
    top: auto; /* Vertikal in der Mitte */
    left: 56.3%; /* Horizontal in der Mitte */
    transform: translate(-50%, -50%); /* Zentrierung */
}

th, td {
    padding: 15px;
    text-align: center;
}

th {
    color: rgb(0, 0, 0);
    font-size: 18px;
    vertical-align: middle;
}

td {
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: none;
}

.newupdate {
    height: auto;
    width: auto;
    color: white;
    border-radius: 100px;
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.blue{
    color: rgb(152, 152, 255);
}

.blue:hover{
    color: rgb(76, 76, 255);
}

.newupdates:hover{
    color: rgb(199, 197, 197);
}

.kundenprojekte {
    text-align: center;
    margin: 20px;
}

.profile-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.profile {
    text-align: center;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Macht die Bilder rund */
    object-fit: cover; /* Stellt sicher, dass das Bild gut aussieht */
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.1); /* Vergrößert das Bild beim Hover */
}

.profile p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.profile a {
    text-decoration: none;
    color: inherit; /* Erbt die Farbe vom Text */
}

.profile a:hover p {
    color: #333;
}

hr.divider {
    border: 0;
    border-top: 2px solid #ccc;
    margin: 30px 0; /* Abstand oben und unten */
    width: 100%; /* Die Linie nimmt 80% der Breite ein */
}

.caption{
    font-size: 10px;
}