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: 60px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease-in-out;
    z-index: 1001;
}

.logo-wrapper img {
    height: 120px;
    transition: all 0.4s ease-in-out;
}

.scrolled .logo-wrapper {
    position: fixed;
    top: -10px;
    left: 20px;
    transform: scale(0.6) translateX(0);
}

/* 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('rs3_parkhaus.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;
}

/*____________________________________________*/

/* ✨ Ablauf der Vermietung Styling */
.process {
    text-align: center;
    padding: 50px 20px;
    background: #111;
}

.process h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.step {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px red;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 15px red;
}

.step h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.step p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

/* 🚀 Icon Styling */
.step::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* 🎨 Icons für jede Box */
.step:nth-child(1)::before {
    background-image: url('icons/online-buchen.png');
    /* Icon für Online buchen */
}

.step:nth-child(2)::before {
    background-image: url('icons/übergabe.png');
    /* Icon für Übergabe */
}

.step:nth-child(3)::before {
    background-image: url('icons/viel-spass.png');
    /* Icon für Viel Spaß */
}


/*____________________________________________*/

/* ✨ Über Uns Styling */
.about {
    padding: 60px 20px;
    background: #000;
    color: #fff;
}

.about .container {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* 🌟 Button Styling */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 30px;
    border: 2px solid red;
    border-radius: 30px;
    color: red;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: red;
    color: black;
}

/* 📸 Bilder Styling */
.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image img,
.sub-image img {
    width: 50%;
    border-radius: 15px;
    object-fit: cover;
}

.sub-image {
    width: 120%;
    margin-left: 40%;
}


/*____________________________________________*/

.vehicle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #000;
}

.vehicle-box {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background: #222;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.hd {
    display: block;
}

/* Linke Box: Mietpreise */
.vehicle-info {
    width: 50%;
    padding: 20px;
    transition: all 0.5s ease-in-out;
}

.vehicle-info h2 {
    margin-bottom: 10px;
}

.price-list {
    list-style: none;
    padding: 0;
}

.infobox {
    border: solid #222;
    box-shadow: inset;
    background-color: #333;
}

.infobox:hover {
    background-color: #cc0000;
}

/* Fahrzeugbild */
.vehicle-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Falls das Bild zu groß ist */
    transition: transform 0.5s ease-in-out, left 0.5s ease-in-out;
    margin-right: 20px;
}

.vehicle-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease-in-out;
    /* Bild wird korrekt dargestellt */
}

/* Rechte Box: Technische Details (Start: Versteckt) */
.vehicle-details {
    width: 50%;
    padding: 20px;
    display: none;
}

/*________________________________________*/

.faq-section {
    padding: 50px;
    background: #000;
    color: white;
    max-width: 800px;
    margin: auto;
}

.faq-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item:hover {
    background: #222;
}

.faq-question {
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 1em;
    color: #bbb;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    color: red;
}

/*___________________________________________________*/

/* 🌙 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;
}

.footerhandy:hover {
    color: red;
}

/* From Uiverse.io by Bodyhc */
.checkbox-wrapper-35 .switch {
    display: none;
}

.checkbox-wrapper-35 .switch+label {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 30px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-wrapper-35 .switch+label::before,
.checkbox-wrapper-35 .switch+label::after {
    content: '';
    display: block;
}

.checkbox-wrapper-35 .switch+label::before {
    background-color: #05012c;
    border-radius: 500px;
    height: 29px;
    margin-right: 8px;
    -webkit-transition: background-color 0.125s ease-out;
    transition: background-color 0.125s ease-out;
    width: 38px;
}

.checkbox-wrapper-35 .switch+label::after {
    background-color: #fff;
    border-radius: 26px;
    box-shadow: 0 3px 1px 0 rgba(37, 34, 71, 0.05), 0 2px 2px 0 rgba(37, 34, 71, 0.1), 0 3px 3px 0 rgba(37, 34, 71, 0.05);
    height: 26px;
    left: 1px;
    position: absolute;
    top: 1px;
    -webkit-transition: -webkit-transform 0.125s ease-out;
    transition: -webkit-transform 0.125s ease-out;
    transition: transform 0.125s ease-out;
    transition: transform 0.125s ease-out, -webkit-transform 0.125s ease-out;
    width: 26px;
}

.checkbox-wrapper-35 .switch+label .switch-x-text {
    display: block;
    margin-right: .3em;
}

.checkbox-wrapper-35 .switch+label .switch-x-toggletext {
    display: block;
    font-weight: bold;
    height: 29px;
    overflow: visible;
    position: relative;
    width: auto;
}



.checkbox-wrapper-35 .switch+label .switch-x-unchecked,
.checkbox-wrapper-35 .switch+label .switch-x-checked {
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
    transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
    transition: transform 0.125s ease-out, opacity 0.125s ease-out;
    transition: transform 0.125s ease-out, opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
}

.checkbox-wrapper-35 .switch+label .switch-x-unchecked {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.checkbox-wrapper-35 .switch+label .switch-x-checked {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.checkbox-wrapper-35 .switch+label .switch-x-hiddenlabel {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper-35 .switch:checked+label::before {
    background-color: red;
}

.checkbox-wrapper-35 .switch:checked+label::after {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}

.checkbox-wrapper-35 .switch:checked+label .switch-x-unchecked {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.checkbox-wrapper-35 .switch:checked+label .switch-x-checked {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.maps {
    position: relative;
    left: 25%;
}

.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: 480px) {

    html,
    body {
        max-width: 480px;
        overflow-x: hidden;
        width: 100%;
    }

    /* Standardmäßig Preise anzeigen */
    .vehicle-info {
        display: block;
    }

    .vehicle-details {
        display: none;
    }

    .vehicle-box:hover .vehicle-info {
        display: block;
    }

    .vehicle-box:hover .vehicle-details {
        display: none;
    }

    .process {
        margin-top: 180px;
    }

    iframe {
        width: 200px;
        height: auto;
    }

    .maps {
        left: 24%;
    }

    .hero {
        margin-bottom: -200px;
    }

    .about {
        margin-left: 25px;
    }

}


/* Mobile Ansicht: Button aktivieren */
@media screen and (max-width: 768px) {

    body {
        max-width: 100vh;
    }

    /* Standardmäßig Preise anzeigen */
    .vehicle-info {
        display: block;
    }

    .vehicle-details {
        display: none;
    }

    .vehicle-box:hover .vehicle-info {
        display: block;
    }

    .vehicle-box:hover .vehicle-details {
        display: none;
    }

    .process {
        margin-top: 180px;
    }

    iframe {
        width: 200px;
        height: auto;
    }

    .maps {
        left: 24%;
    }

    .hero {
        margin-bottom: -200px;
    }
}

/* Desktop-Version: Hover bleibt erhalten */
@media screen and (min-width: 769px) {


    .vehicle-info {
        display: block;
    }

    .vehicle-details {
        display: none;
        width: 90%;
    }

}



/* Mobile Optimierung */
@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;
    }
}

/* 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;
    }

    .switch {
        position: absolute;
        top: 10px;
    }

    .vehicle-image {
        width: 100%;
        margin: 20px 0;
    }

    .vehicle-image img {
        width: 80%;
    }

    .sub-image {
        display: none;
    }

    /* ❌ 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;
    }

}