/* styles.css */
body {
    background-color: #051622;
    margin: 0;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-align: center;
    background-color: #051622;
}


html, body{
    overflow-x: hidden;
}
header {
    background-color: #051622; /* You can change this to any color you prefer */
    color: #0073e6;
    text-align: left;
    padding: px 15;
}

.logo img{
    height: 100%;
}


/* Menu-Configurations */
.menu-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    padding: 0 0 0 50px;
    color: #0073e6;
}


.collapsible-menu {
    display: none;
    background-color: #051622;
    padding: 0px 30px;
    border-bottom: 3px solid #deb992;
}

.collapsible-menu ul {
    list-style-type: none;
    padding: 0
}

.collapsible-menu a {
    text-decoration: none;
    display:block;
    padding: 0.25rem;
    margin: 0-.25rem;
    color: #1ba098;
    /*Hover-Effect*/
    box-shadow: inset 0 0 0 0 #1ba098;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.collapsible-menu a:hover {
    color: white
}
/*Hover-Effect-End*/
.collapsible-menu label {
    font-family: 'Noto Sans', ;
    font-size: 44px;
    display: block;
    cursor: pointer;
    background: url(/img/menu.png) no-repeat left center;
    background-size: 30px;
    padding: 10px 0 10px 50px;
}

input#menu {
    display: none;
}

input:checked +label {
    background-image: url(/img/cross.png);
}

.menu-content {
    max-height: 0;
    overflow: hidden;
    font-family: 'Oswald', sans-serif; 
    padding: 0 0 0 50px;
}
/* Toggle Effect */
input:checked ~ label {
    background-image: url(/img/cross.png);
    background-size: 35px;
}
input:checked ~ .menu-content {
    max-height: 100%;
}

/* Menu-Configuration End */
/* Language Menu */
.language-dropdown {
    position: relative;
    display: inline-block;
    width: fit-content;
}

.dropdown-button {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px;
    background-color: #051622;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 16px;
    width: 100%;
}

.dropdown-button:hover {
    background-color: #00b0ff;
}

.dropdown-content {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f1f1f1;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 100%; /* <- passt sich der Breite des Buttons an */
    text-align: center;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

.language-dropdown:hover .dropdown-button {
    background-color: #0056b3;
}

/* Grundlegendes Layout für das Header */
header {
    background-color: #051622; /* Dunkler Hintergrund für den Header */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    position: relative;
}

/* Logo Styling */
.logo {
    display: flex;               /* Flexbox aktivieren */
    align-items: center;         /* Vertikale Ausrichtung (zentriert) */
    justify-content: center;     /* Horizontale Ausrichtung (zentriert) */
}

.logo a{
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.logo img{
    margin-right: 10px;
    height: 100px;
    width: auto;
    border-radius: 4px;
}

/* Horizontal ausgerichtetes Menü */
.nav-links {
    display: flex;
    height: 50px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-right: 20px; /* Abstand zwischen den Menü-Elementen */
    position: relative; /* Notwendig für das Dropdown */
    margin-top: 15px;
}

.nav-links a, .dropdown-button {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #00b0ff; /* Akzentfarbe bei Hover */
}

/* Dropdown-Menü */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Dropdown erscheint direkt unter dem Menüpunkt */
    left: 0;
    background-color: #333;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px; /* Breite des Dropdowns */
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    color: #00b0ff;
}

/* Anzeigen des Dropdowns bei Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .arrow{
    transform: rotate(180deg);
}
















/* Contact Form Section */

.contact {
    padding: 40px 20px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-bottom: 5px;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 8px;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.form-group textarea {
    resize: vertical;
}

.contact button {
    padding: 10px;
    background: #1e1e1e;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
	font-size: 1.2em;
	width: 100%;
}

.contact button:hover {
    background: #333;
}

/* Footer */
footer {
    background-color: #051622;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 0%;
    position: relative; bottom: 0; 
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/Hero.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 {
    font-size: 3em;
}
.cta-button {
    padding: 10px 20px;
    background-color: #ff6600;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

/* About-Section */
.about {
    padding: 60px 20px;
    background-color: #051622;
    text-align: center;
}
.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.about p {
    font-size: 1.1em;
    color: #666;
}
.about-container {
    display: flex;            /* Flexbox aktivieren */
    justify-content: space-between; /* Verteile den Raum zwischen den Elementen */
    align-items: center;      /* Vertikale Ausrichtung in der Mitte */
    padding: 20px;
}

.text {
    flex: 1;                  /* Text nimmt 1 Teil des Containers ein */
    padding-right: 20px;      /* Abstand zum Bild */
}

.image {
    flex: 1;                  /* Bild nimmt 1 Teil des Containers ein */
    text-align: right;        /* Bild nach rechts ausrichten */
}

.image img {
    max-width: 100%;          /* Bild passt sich der Breite des Containers an */
    height: auto;             /* Bildhöhe bleibt proportional */
    border-radius: 8px;
}

/* Services - Section */
.services-container {
    display: flex;            /* Flexbox aktivieren */
    justify-content: space-between; /* Verteile den Raum zwischen den Elementen */
    align-items: center;      /* Vertikale Ausrichtung in der Mitte */
    padding: 20px;
    flex-direction: row-reverse;
}

.services .text {
    padding-left: 20px;
}

.services .image {
    flex: 1;                  /* Bild nimmt 1 Teil des Containers ein */
    text-align: right;        /* Bild nach rechts ausrichten */
}
.services .image img {
    max-width: 100%;          /* Bild passt sich der Breite des Containers an */
    height: auto;             /* Bildhöhe bleibt proportional */
    border-radius: 8px;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px auto;
    max-width: 1100px;
    padding: 60px 20px;
    background-color: #051622;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}
.services p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    
}
.services-cta-button {
    padding: 10px 20px;
    background-color: #ff6600;
    border: none;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-bottom: 15px;
}
/* Testimonial - Section */
.testimonials {
    background-color: #051622;
    padding: 40px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    color: #f9f9f9;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Testimonial Container */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden; /* Verhindert das Überlaufen der Testimonials */
    transition: transform 1s ease-in-out;
}

.testimonial-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none; /* Anfangs alle Testimonials unsichtbar */
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.2em;
}

cite {
    font-size: 1em;
    color: #777;
    font-weight: 600;
}

.stars {
    font-size: 1.5em;
    color: #f39c12; /* Gold für Sterne */
    margin-top: 10px;
}

/* Navigation */
.slider-nav {
    position: relative;
    top: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
}

.prev, .next {
    background: #051622;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 2em;
    cursor: pointer;
    border-radius: 50%;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 60px;
}

.prev:hover, .next:hover {
    background: 051622;
}

/* Burger Icon für mobile Ansicht */
#burger-icon {
    display: none;
    margin-right: 15px;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

#burger-icon div {
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
}
.language-mobile-dropdown{
    display: none;
}

/* Media Queries für Mobile */
@media screen and (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        transition: all 0.3s ease;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .about-container,
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .about .image,
    .services .image{
        max-width: 80%;
        height: auto;
    }
    .services .image {
        margin-top: 20px;
    }
    .testimonial-item {
        display: block;
        margin: 10px 0;
    }

    .contact{
        background-color: #051622;
    }

    .footer {
        text-align: center;
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .language-dropdown{
        display: none;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Startet außerhalb des Bildschirms */
        width: 50%;
        height: 100%;
        background-color: #051622;
        flex-direction: column;
        padding: 20px;
        box-shadow: -3px 0px 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;  /* Animiert das Herein- und Hinausgleiten */
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .navbar .logo {
        flex-grow: 1;
    }

    /* Burger-Icon sichtbar machen */
    #burger-icon {
        display: flex;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 50%; /* Vertikal in der Mitte */
        transform: translateY(-50%); /* Korrektur der Zentrierung (exakte Mitte) */
        width: 30px;
        height: 20px;
    }

    #burger-icon div {
        display: flex;
        width: auto;
        height: auto;
        align-items: center; /* Zentriert den Inhalt des div vertikal */
        justify-content: center; /* Optional: Horizontal zentrieren innerhalb des div */
        background-color: #051622;
        border-radius: 5px;
    }

    /* Dropdown-Menu in mobile Ansicht */

    .navbar .dropdown .dropdown-menu {
        display: none; /* Dropdown-Menü ist standardmäßig versteckt */
        position: absolute;
        top: 100%; /* Direkt unter dem Dropdown-Link */
        left: 0;
        width: 100%;
        background-color: #051622;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 10; /* Sorgt dafür, dass das Dropdown über den anderen Inhalten liegt */
    }
    .navbar .dropdown {
        position: relative; /* Damit der Dropdown relativ zum Eltern-Container positioniert wird */
    }
   
    .navbar .dropdown.active .dropdown-menu {
        display: block;
    }
    .navbar .language-mobile-dropdown .dropdown-menu {
        display: none; /* Dropdown-Menü ist standardmäßig versteckt */
        position: absolute;
        top: 100%; /* Direkt unter dem Dropdown-Link */
        left: 0;
        width: 100%;
        background-color: #051622;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 10; /* Sorgt dafür, dass das Dropdown über den anderen Inhalten liegt */
    }
    .navbar .language-mobile-dropdown{
        display: block;
        position: relative;
    }

    .navbar .language-mobile-dropdown.active .dropdown-menu {
        display: block;
    }

}

footer {
  background-color: #051622;
  color: #f0f0f0;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
  color: #00b0ff;

}

.footer-logo img{
    margin-right: 10px;
    height: 150px;
    width: auto;
    border-radius: 4px;
}
.footer-logo {
    display: flex;               /* Flexbox aktivieren */
    align-items: center;         /* Vertikale Ausrichtung (zentriert) */
    justify-content: center;     /* Horizontale Ausrichtung (zentriert) */
}

.footer-logo a{
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}

.footer-links a {
  color: #cccccc;
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {


  .footer-bottom {
    text-align: center;
    font-size: 13px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
}

.container-404{
    margin-bottom: 200px;
}



/*Services.shtml*/

@media screen and (max-width: 768px) {
    .other-services-container,
    .stock-rom-service-container {
        flex-direction: column;
        align-items: center;
    }

    .other-services .image,
    .stock-rom-service .image{
        display: none;
    }
}

/* Stock-Rom-Service - Section */

.stock-rom-service-container {
    display: flex;            /* Flexbox aktivieren */
    justify-content: space-between; /* Verteile den Raum zwischen den Elementen */
    align-items: center;      /* Vertikale Ausrichtung in der Mitte */
    padding: 20px;
    flex-direction: row-reverse;
}

.other-services-container {
    display: flex;            /* Flexbox aktivieren */
    justify-content: space-between; /* Verteile den Raum zwischen den Elementen */
    align-items: center;      /* Vertikale Ausrichtung in der Mitte */
    padding: 20px;
    flex-direction: row;   
}

.other-services .image,
.stock-rom-service .image {
    flex: 1;                  /* Bild nimmt 1 Teil des Containers ein */
    text-align: right;        /* Bild nach rechts ausrichten */
}

.other-services .image img,
.stock-rom-service .image img {
    max-width: 100%;          /* Bild passt sich der Breite des Containers an */
    height: auto;             /* Bildhöhe bleibt proportional */
    border-radius: 8px;
}

.other-services,
.stock-rom-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px auto;
    max-width: 1100px;
    padding: 60px 20px;
    background-color: #051622;
    text-align: center;
}

.other-services h2,
.stock-rom-service h2 {
    overflow-wrap: break-word;
    hyphens: manual;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.other-services p,
.stock-rom-service p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
    
}

.stock-rom-service .text{
    padding-left: 15px;
}
.other-services h3{
    color: #666
}


/*Pop Up Formular senden*/
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup.success {
  border-top: 5px solid #28a745;
}

.popup.error {
  border-top: 5px solid #dc3545;
}

.popup h3 {
  margin: 0 0 10px;
}

.popup button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #0056b3;
}