@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: transparent;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Translucent wash — image colors show through but text stays readable on all backgrounds */
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to bottom, rgba(220, 220, 220, 0.75) 0%, rgba(220, 220, 220, 0.6) 55%, rgba(220, 220, 220, 0.3) 80%, rgba(220, 220, 220, 0) 100%);
    z-index: 1;
}


.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.bg-image.active {
    opacity: 1;
}


.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 3vh 4vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #000;
    padding-bottom: 1vh;
    margin-bottom: 5vh;
    color: #000;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.6);
}

header a {
    color: #000;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

.logo {
    margin-bottom: 8vh;
}

.main-logo-img {
    height: auto;
    width: clamp(100px, 20vw, 200px);
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
}

.headline {
    font-size: clamp(2.5rem, 4.8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 5vh;
    color: #000;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.5);
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 2.5vh 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    margin-bottom: 2vh;
}

.brand-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(22px, 4.8vw, 38px);
}

.brand-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}


.locations {
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    color: #000000;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    font-weight: 700;
}

.location {
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

.location:hover {
    color: #000;
    font-weight: 800;
}

.location.active {
    color: #f19d20;
    font-weight: 800;
}

.separator {
    color: #ccc;
    font-weight: 400;
}

.legal-footer {
    font-size: 0.75rem;
    color: #666;
    padding-top: 3rem;
    padding-bottom: 2rem;
    text-align: justify;
    line-height: 1.4;
}