body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #000;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

header {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: all 0.4s ease-in-out;
}

.logo-wrapper {
    position: absolute;
    top: 15px;
    left: 100px;
    transform: translateX(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1001;
}

.logo-wrapper img {
    height: 50px;
    transition: all 0.4s ease-in-out;
}

/* Standard Navigation für Desktop */
.navfull {
    background: rgba(0, 0, 0, 0.6);
    /* Schwarzer Hintergrund mit Transparenz */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    /* Weicher Schatten-Effekt */
    backdrop-filter: blur(5px);
    /* Glas-Effekt für modernes Design */
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}


.navfull nav {
    display: flex;
    align-items: center;
}

.navfull .full-nav {
    color: white;
    font-size: 1em;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
    margin: 5px;
}

.navfull .full-nav:hover {
    background-color: red;
    color: black;
}

/* Mobile Navigation - Standardmäßig ausgeblendet */
.nav-toggle {
    display: none;
    position: absolute;
    top: 15px;
    right: 30px;
    background-color: red;
    color: black;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1001;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.nav-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.nav-menu ul li {
    margin: 20px 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: red;
}

/* Close Button für das Mobile Menü */
.close-nav {
    background: none;
    border: none;
    font-size: 2em;
    color: red;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Menü öffnen */
.nav-menu.open {
    transform: translateX(0);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
}

ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('stageteaser.png') no-repeat center center/cover;
    color: #fff;
    text-align: left;
    padding: 280px 20px 120px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: -100px;
    font-family: Copperplate;
}

.hero h2 {
    font-size: 1.8em;
    margin-bottom: 50px;
    font-family: Copperplate;
}

.hero .btn {
    background: red;
    color: black;
    padding: 18px 35px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #cc0000;
}

.contact-section {
    text-align: center;
    padding: 50px 20px;
}

.contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid red;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-container {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    margin: auto;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1em;
    box-sizing: border-box;
    /* Verhindert, dass das Padding die Größe beeinflusst */
    resize: none;
    /* Verhindert das manuelle Vergrößern des Textfeldes */
}

input:focus,
textarea:focus {
    border: 1px solid red;
    outline: none;
}

.btn {
    background-color: red;
    color: black;
    padding: 12px 20px;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    transition: 0.3s;
}

.btn:hover {
    background: darkred;
    transform: scale(1.05);
}


/* 🌙 Footer Styles */
footer {
    background: #000;
    color: white;
    padding: 40px 0;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    /* Dezenter Strich */
    position: absolute;
    top: 0;
    left: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* 🏢 Linke Sektion */
.footer-left {
    text-align: left;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.company-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

/* ☎️ Zentrale Sektion */
.footer-center {
    text-align: center;
    font-size: 1.1em;
}

.footer-center i {
    margin-right: 8px;
    color: red;
}

/* 🔗 Rechte Sektion */
.footer-right {
    text-align: right;
}

.footer-right a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
}

.footer-right a:hover {
    color: red;
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: red;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.help-button:hover {
    background: rgb(236, 66, 66);
}

/* Pop-up Fenster */
.help-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: none;
    width: 250px;
    z-index: 10000000;
}

.help-popup a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background 0.2s;
}

.help-popup a:hover {
    background: #f1f1f1;
}

.help-popup .close-btn {
    text-align: right;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}



@media screen and (max-width: 1024px) {
    .navfull {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}


@media (max-width: 1023px) {
    .navfull {
        display: none;
    }

    #devheadline {
        display: flex;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: #285268;
    }

    .product-main {
        display: block;
    }

    .product-details {
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    body {
        max-width: 480px;
        overflow-x: hidden;
    }

    header {
        flex-direction: column;
        padding: 10px;
    }

    .logo-wrapper img {
        height: 80px;
    }

    .hero {
        padding: 150px 20px 80px;
    }

    .hero h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero .btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .faq-container {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 20px;
    }

    .vehicle-box {
        display: block;
        margin-top: 250px;
    }

    .vehicle-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .vehicle-info,
    .vehicle-details {
        width: 100%;
        padding: 10px;
    }

    .vehicle-image {
        width: 100%;
        margin: 20px 0;
    }

    .vehicle-image img {
        width: 80%;
    }

    /* ❌ Hover deaktivieren auf Mobile */
    .vehicle-box:hover .vehicle-info {
        display: block;
    }

    .vehicle-box:hover .vehicle-details {
        display: none;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1em;
        text-align: justify;
    }

    .about-images {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .main-image img,
    .sub-image img {
        width: 100%;
    }

    .switch {
        display: none;
    }

    .contact-container {
        width: 90%;
    }

    .contact-section h1 {
        font-size: 2em;
    }

    .contact-section p {
        font-size: 1em;
    }

}

/* Extra kleine Geräte */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }

    .logo-wrapper img {
        height: 80px;
    }

    .hero {
        padding: 150px 20px 80px;
    }

    .hero h1 {
        font-size: 2em;
        margin-top: 10px;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero .btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .faq-container {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 20px;
    }

    .vehicle-box {
        display: block;
        margin-top: 250px;
    }

    .vehicle-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .vehicle-info,
    .vehicle-details {
        width: 100%;
        padding: 10px;
    }

    .vehicle-image {
        width: 100%;
        margin: 20px 0;
    }

    .vehicle-image img {
        width: 80%;
    }

    /* ❌ Hover deaktivieren auf Mobile */
    .vehicle-box:hover .vehicle-info {
        display: block;
    }

    .vehicle-box:hover .vehicle-details {
        display: none;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1em;
        text-align: justify;
    }

    .about-images {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .main-image img,
    .sub-image img {
        width: 100%;
    }

    .switch {
        display: none;
    }

    .contact-container {
        width: 90%;
    }

    .contact-section h1 {
        font-size: 2em;
    }

    .contact-section p {
        font-size: 1em;
    }

}