/* ---------- Allgemeine Einstellungen ---------- */
html, body {
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- BrassCenter Intro ---------- */
.brasscenter_intro {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-height: 800px;
}
.img-parallax {
    width: 100vw;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ---------- Arrow ---------- */
.arrowdown {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 100px;
    margin-left: -50px;
    font-size: 50px;
    color: white;
    text-align: center;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}
.arrowdown:hover {
    opacity: 0.7;
}

/* ---------- BrassCenter Content ---------- */
.brasscenter_content {
    width: 100%;
    box-shadow: 0 0 20px #333;
    background-color: #fff;
}

/* ---------- Logo Brasscenter ---------- */
.logoBrasscenter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    max-width: 90%;
}

/* ---------- Text Intro ---------- */
.textIntro {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    box-sizing: border-box;
}
.textIntro h2 {
    font-size: 1.5em;
    color: #b33b3b;
    margin-bottom: 20px;
}
.textIntro p {
    line-height: 1.6;
    margin-bottom: 20px;
}
.textIntro .cta {
    background-color: #b33b3b;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.2em;
    font-weight: bold;
}

/* ---------- Lounges-Fotobereich ---------- */
.lounges-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.lounge-photo {
    width: 90%;
    max-width: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.lounge-photo img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    /* Safari Fallback für object-fit */
    font-family: 'object-fit: cover;';
}
.lounge-photo:hover {
    transform: scale(1.05);
}

/* ---------- Logos ---------- */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.logo-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
}
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    /* Safari Fallback für object-fit */
    font-family: 'object-fit: contain;';
}
.logo-item:hover {
    transform: scale(1.05);
}
