body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #353535;
    color: #222;
}

.topbar {
    background: #353535;
    color: #fff;
    text-align: center;
    padding: 0.7rem 0;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    font-weight: 500;
}


.hero-header {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #111;
}

.hero-img {
    width: 100vw;
    max-width: 900px;
    height: auto;
    min-height: 320px;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    min-height: 320px;
    max-height: 520px;
    background: linear-gradient(180deg, rgba(30,30,30,0.45) 0%, rgba(30,30,30,0.15) 60%, rgba(214,236,250,0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 3;
    background: none;
    text-align: center;
    padding: 2.5rem 1rem 2.5rem 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.hero-below {
    width: 100vw;
    background: transparent;
    text-align: center;
    padding: 2.5rem 1rem 2.5rem 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 5;
    margin-bottom: -1.5rem;
    box-shadow: none;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 1.1rem 0;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(30,30,30,0.25);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #eaf6ff;
    text-shadow: 0 1px 8px rgba(30,30,30,0.18);
}

#coming-soon {
    background: linear-gradient(90deg, #1e90ff 0%, #00c6fb 100%);
    color: #fff;
    border: none;
    padding: 0.9rem 2.7rem;
    font-size: 1.08rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.07em;
    box-shadow: 0 2px 12px rgba(30,144,255,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-bottom: 1.2rem;
}
#coming-soon:hover {
    background: linear-gradient(90deg, #00c6fb 0%, #1e90ff 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(30,144,255,0.18);
}

main {
    max-width: 700px;
    margin: -2.5rem auto 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(30,144,255,0.07), 0 2px 8px rgba(0,0,0,0.04);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.welcome-section h2 {
    margin-top: 0;
    color: #222;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.welcome-section p {
    color: #444;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem 2.5rem 1rem;
    position: relative;
    font-size: 1rem;
}

.footer-address {
    letter-spacing: 0.1em;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.footer-copyright {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    background: #fffbe7;
    color: #222;
    border: 1px solid #ffb300;
    border-radius: 8px;
    padding: 1rem;
    max-width: 400px;
    margin: 2rem auto 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    z-index: 10;
    display: none;
}

.cookie-banner h4 {
    margin-top: 0;
}

#accept-cookies {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
}
