body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100vw;

    /* background-image: radial-gradient(circle at center, #313131 0%, #111111 65%, #000000 100%); */
    background-color: #FFFFFF;    
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#lowerbar {
    /* background-color: hsla(0, 0%, 20%, 0.658); */
    background-color: #FFFFFF;    
    height: 10vh;
    position: sticky;
    top: 0;
    width: 100%;
    border-bottom: black 2px solid;
    /* background: linear-gradient(to top, hsla(0, 0%, 20%, 0.788), hsla(0, 0%, 20%, 1)); */

    display: flex;
	margin-left: 3%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    z-index: 10;
    box-sizing: border-box;
    padding-right: 2vw;
}

.lowerbar h3 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
    margin-bottom: 20px;
}


.links {
    display: flex;
    gap: 20px; /* Abstand zwischen den Links */
}


#topbar {
    /* background-color: hsla(0, 0%, 20%, 0.658); */
    background-color: #FFFFFF;    
    height: 20vh;
    position: sticky;
    top: 0;
    width: 100%;
    border-bottom: black 2px solid;
    /* background: linear-gradient(to top, hsla(0, 0%, 20%, 0.788), hsla(0, 0%, 20%, 1)); */

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    z-index: 10;
    box-sizing: border-box;
    padding-right: 2vw;
}

.topbar h3 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

#logo {
    display: inline-block;
    height: 19vh;
    width: auto;
    margin-left: 1vw;
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
    padding-right: 1vw;
    flex-shrink: 0;
}

#logo img {
    border-radius: 20px;
    height: 100%;
    width: auto;
}

a {
    text-decoration: none;
    color: black;
}

/* ── Bestellguide-Button ── */
#order-btn {
    /* background: rgba(255, 255, 255, 0.12); */
    background: rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    color: black;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 10px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
}

#order-btn:hover {
    background: rgba(0, 0, 0, 0.22);
    border-color: white;
}

/* Lange Bezeichnung → sichtbar bis 500px, kurze ab 500px */
#order-btn .btn-short {
    display: none;
}

@media (max-width: 500px) {
    #order-btn .btn-full  { display: none; }
    #order-btn .btn-short { display: inline; }
}

/* ── Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    color: white;
    padding: 40px;
    max-width: 520px;
    width: 90%;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}

.modal-box h2 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.modal-box p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 12px;
}

.modal-box ol {
    padding-left: 20px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

.modal-close {
    margin-top: 24px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    padding: 10px 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255,255,255,0.25);
}
