body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: white;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #d71920;
    margin: 0 0 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.rundgang-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 30px auto;
    overflow: hidden;
}

.showroom {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.bike {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 18%;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
}

.bike:hover {
    transform: translate(-50%, -50%) scale(1.08);
    z-index: 10;
}

.bike img {
    width: 100%;
    filter: drop-shadow(0px 16px 12px rgba(0,0,0,0.6));
}

.bike span {
    display: inline-block;
    margin-top: 5px;
    background: rgba(0,0,0,0.8);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 360px;
    transform: translate(-50%, -50%);
    background: #181818;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    z-index: 999;
}

.popup img {
    width: 100%;
}

.close {
    float: right;
    background: none;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.btn {
    display: block;
    margin-top: 15px;
    background: #d71920;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #fff;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5,5,5,0.92);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 7%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo img {
    height: 58px;
}

.main-header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-header nav a:hover {
    color: #c98232;
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.65), rgba(0,0,0,0.2)),
        url('../bilder/hero-bike.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 7% 80px;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.subline {
    color: #c98232;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 92px);
    line-height: 0.95;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-text {
    max-width: 620px;
    font-size: 20px;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 28px 0;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 26px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #c98232, #8d4a16);
    color: #fff;
    box-shadow: 0 10px 30px rgba(201,130,50,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #c98232;
    color: #c98232;
}

.intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 90px 7%;
    background:
        radial-gradient(circle at top, rgba(201,130,50,0.16), transparent 35%),
        #111;
}

.intro-card {
    background: linear-gradient(145deg, #181818, #0d0d0d);
    padding: 34px;
    border-radius: 16px;
    border: 1px solid rgba(201,130,50,0.18);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.intro-card h2 {
    color: #c98232;
    margin-top: 0;
    font-size: 28px;
}

.intro-card p {
    color: #cfcfcf;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 100px 7%;
    background:
        linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.9)),
        url('../bilder/showroom.jpg');
    background-size: cover;
    background-position: center;
}

.cta-section h2 {
    font-size: clamp(34px, 5vw, 64px);
    text-transform: uppercase;
    margin: 0 0 18px;
}

.cta-section p {
    color: #ccc;
    font-size: 20px;
    margin-bottom: 32px;
}

footer {
    background: #050505;
    padding: 28px 7%;
    text-align: center;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 850px) {
    .main-header {
        flex-direction: column;
        gap: 14px;
    }

    .main-header nav a {
        margin: 0 8px;
        font-size: 12px;
    }

    .logo img {
        height: 48px;
    }

    .hero {
        padding-top: 180px;
    }

    .intro {
        grid-template-columns: 1fr;
    }
}
.tour-map{

position:fixed;

top:20px;

right:20px;

z-index:9999;

width:260px;

background:
rgba(20,20,20,.72);

backdrop-filter:
blur(18px);

border-radius:18px;

padding:20px;

border:
1px solid
rgba(255,255,255,.08);

color:white;

}

.tour-map h4{

margin-top:0;

margin-bottom:15px;

color:#c98232;

text-transform:uppercase;

letter-spacing:2px;

}

.map-item{

padding:10px;

margin-bottom:8px;

background:
rgba(255,255,255,.06);

border-radius:10px;

text-align:center;

}

.map-item.active{

background:#c98232;

font-weight:700;

}

.map-row{

display:flex;

gap:8px;

}

.map-row .map-item{

flex:1;

}
html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    font-family: Arial, sans-serif;
}

#panorama {
    width: 100vw;
    height: 100vh;
}

.bottomnav {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(0,0,0,0.75);
    padding: 10px;
    border-radius: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bottomnav button {
    background: #111;
    color: white;
    border: 1px solid #333;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.bottomnav button:hover {
    background: #c98232;
}
.bottomnav button.active {
    background: #c98232;
    color: white;
}
.tour-panel {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 999999 !important;
    width: 280px;
    background: rgba(20,20,20,.85);
    color: white;
    padding: 20px;
    border-radius: 18px;
    border: 2px solid #c98232;
    box-shadow: 0 20px 60px rgba(0,0,0,.8);
}

.tour-panel-logo img {
    height: 55px;
    max-width: 100%;
    display: block;
    margin: 0 auto 12px;
}

.tour-panel-content h3 {
    margin: 0;
    color: white;
    font-size: 24px;
}

.tour-panel-content p {
    color: #c98232;
    font-weight: bold;
}

.tour-panel-content a {
    display: block;
    background: #c98232;
    color: white;
    text-decoration: none;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}
.bike-hotspot {
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.bike-dot {
    width: 34px;
    height: 34px;
    background: #c98232;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(201,130,50,.9);
    animation: bikePulse 1.6s infinite;
}

@keyframes bikePulse {
    0% { transform: scale(.8); opacity: 1; }
    100% { transform: scale(1.45); opacity: .25; }
}

.bike-popup {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) translateX(130%);
    z-index: 99999;
    width: 360px;
    background: rgba(15,15,15,.9);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 22px;
    color: white;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 60px rgba(0,0,0,.75);
    transition: .35s;
}

.bike-popup.active {
    transform: translateY(-50%) translateX(0);
}

.bike-popup img {
    width: 100%;
    border-radius: 12px;
    background: #111;
}

.bike-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.bike-info p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 10px 0;
}

.bike-info span {
    color: #aaa;
}

.bike-info strong {
    color: white;
}

.bike-btn {
    display: block;
    background: #c98232;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}
.bike-image-hotspot {
    width: 320px !important;
    height: auto !important;

    transform:
    translate(-50%,-100%);

    pointer-events:auto;
}

.bike-image-hotspot img {

    width:100%;

    display:block;

    filter:

    drop-shadow(
    0 25px 25px
    rgba(0,0,0,.8)

    );

    transform:

    perspective(800px)

    rotateX(8deg);

}