/* =====================================================
   CAFÉ EISBERG – Style Sheet (Redesign 2026)
   ===================================================== */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --blue:    #63B1D1;
    --blue-dk: #4593b5;
    --pink:    #ED6C7E;
    --green:   #95BC3D;
    --cream:   #FDFCF8;
    --white:   #ffffff;
    --text:    #1E1E2E;
    --muted:   #6b7280;
    --border:  rgba(0,0,0,0.10);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
    --radius:  1.25rem;
    --radius-lg: 2rem;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* ── Utility ── */
.roboto-black { font-family: "Roboto", sans-serif; font-weight: 900; }
.lilita       { font-family: "Lilita One", sans-serif; font-weight: 400; }
.lucky        { font-family: "Luckiest Guy", cursive; font-weight: 400; }
.marker       { font-family: "Permanent Marker", cursive; font-weight: 400; }
.mainblue     { color: var(--blue); }
.mainblueBG   { background-color: var(--blue); }
.border       { border: 1.5px solid var(--border); }
.shadow       { box-shadow: var(--shadow-sm); }
.containter   { display: flex; justify-content: space-between; }
.spaceAround  { display: flex; justify-content: center; }
.content      { display: flex; flex-direction: column; align-items: center; }
a             { text-decoration: none; color: inherit; }

/* ── Section heading helpers ── */
.section-title {
    font-family: "Lilita One", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--text);
    letter-spacing: 0.05em;
}

.section-line {
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 99px;
    background: var(--blue);
    margin: 0.5rem auto 0;
}
/* =====================================================
   NAVIGATION  – structure unchanged, only visual
   ===================================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
    box-shadow: 0 2px 20px rgba(99,177,209,0.40);
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0.45rem 1.2rem;
}

nav img {
    width: 36px;
    background: var(--white);
    border-radius: 50%;
    margin-right: 0.5rem;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.45);
    transition: transform 0.2s;
}
nav img:hover { transform: scale(1.08); }

ul { list-style: none; }

.leftNav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.leftItem { margin-left: 0.75rem; }

.button {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 2rem;
    color: var(--white);
    padding: 0.3rem 1rem;
    margin: 0 0.2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.button:hover,
.button.active,
button:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--blue);
}

.active {
    background: var(--white);
    color: var(--blue);
}



/* =====================================================
   HERO / INFOTEXT  – structure & background unchanged
   ===================================================== */
.infotext {
    text-align: center;
    align-content: center;
    justify-self: center;
    margin-top: 3rem;
    background-image: url('/img/bearb2.png');
    background-position: bottom;
    background-repeat: no-repeat;
    height: 100vh;
}
.infotext h1 { color: var(--green); margin-top: 5rem; }
.logo img { width: 40%; }
.titlelogo { display: flex; justify-content: center; align-items: center; height: 100%; }

/* =====================================================
   PAGE WRAPPER
   ===================================================== */
.page { width: 100%; }



/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: linear-gradient(135deg, #1e2a3a 0%, #2d3f55 100%);
    color: rgba(255,255,255,0.85);
    padding: 3rem 2rem 1.5rem;
}

footer img {
    width: 28px;
    margin-top: 0.6rem;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}
footer img:hover { opacity: 1; transform: scale(1.1); }

footer p { margin-top: 0.45rem; font-size: 0.9rem; }

.footer-copy {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.containter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.halb {
    flex: 1;
    min-width: 160px;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.drittel { width: 30%; }
.left { text-align: left; }

.footer-brand strong {
    display: block;
    font-family: "Lilita One", sans-serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}
footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
footer a:hover { color: var(--white); }

/* =====================================================
   SPEISEKARTE
   ===================================================== */
.speisekarte {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1.5rem 4rem;
    background: var(--white);
    width: 100%;
}

.speisetitel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 640px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.sorten {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
    width: auto;
    max-width: none;
}
.sorten:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sorten p { color: var(--white); text-align: center; font-size: 0.95rem; letter-spacing: 0.05em; }

.downloadKarte {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--blue);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: var(--blue);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-left: 0;
    max-width: none;
}
.downloadKarte:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.downloadKarte p { color: inherit; font-size: 0.95rem; letter-spacing: 0.04em; }

.vegan {
    background: linear-gradient(135deg, var(--green) 0%, #b0d55a 100%);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
}
.vegan p { color: var(--white); text-align: center; }

.speiseListe {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 640px;
    gap: 0.25rem;
}

.eise {
    display: none;
    justify-content: center;
    margin: 0.5rem;
}
.eise.show { display: flex; }

.eis {
    margin: 0.6rem;
    max-width: 100px;
    text-align: center;
}

.eis img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eis img:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: var(--shadow-lg);
}
.eis p {
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.4rem;
    color: var(--text);
    text-align: center;
}


/* =====================================================
   STANDORT
   ===================================================== */
.standort {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1.5rem 5rem;
    background: linear-gradient(180deg, var(--cream) 0%, #eaf6fb 100%);
    width: 100%;
}

.title {
    text-align: center;
    margin-bottom: 1.5rem;
    width: auto;
    max-width: none;
}
.title p {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink) 0%, #f5899a 100%);
    color: var(--white);
    font-family: "Lilita One", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    padding: 0.6rem 2rem;
    border-radius: var(--radius-lg);
    letter-spacing: 0.08em;
    border: none;
    box-shadow: var(--shadow-md);
}

.maps {
    width: min(580px, 90vw);
    height: min(380px, 55vw);
    min-height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
    margin: 0.5rem 0 1.5rem;
}

.adresse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: var(--muted);
}
.adresse p::before { content: "📍 "; }
/* Öffnungszeiten */
.zeiten {
    text-align: center;
    margin-bottom: 1.25rem;
}
.zeiten h3 {
    font-family: "Lilita One", sans-serif;
    font-size: 1.3rem;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.gmaps-zeiten-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--white);
    color: #1a73e8;
    border: 2px solid #1a73e8;
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, color 0.2s;
}
.gmaps-zeiten-link:hover { background: #1a73e8; color: var(--white); }

.zeitenListe { width: min(520px, 92vw); }

.zeiten-hinweis {
    font-size: 0.76rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 1rem;
}

.wochentag {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.55rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.15s;
}
.wochentag:hover { transform: translateX(4px); }

.tag {
    background: linear-gradient(135deg, var(--pink) 0%, #f5899a 100%);
    color: var(--white);
    font-family: "Lilita One", sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    width: 135px;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.uhr {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

/* Pager */
.blaettern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
}

.seitenbutton {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s;
}
.seitenbutton:hover {
    background: var(--blue-dk);
    transform: scale(1.08);
    color: var(--white);
}

#seitenzahl {
    background: var(--white);
    color: var(--text);
    font-weight: 700;
    text-align: center;
    padding: 0.6rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    line-height: 1.4;
}

.show { display: flex; }


/* =====================================================
   PARTNER
   ===================================================== */
.partnerCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1.5rem 5rem;
    background: var(--white);
    width: 100%;
}

.partnerTitle {
    text-align: center;
    margin-bottom: 1.5rem;
    width: auto;
    max-width: none;
}
.partnerTitle p {
    display: inline-block;
    background: linear-gradient(135deg, var(--green) 0%, #b0d55a 100%);
    color: var(--white);
    font-family: "Lilita One", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    padding: 0.6rem 2rem;
    border-radius: var(--radius-lg);
    letter-spacing: 0.08em;
    border: none;
    box-shadow: var(--shadow-md);
}

.partnerContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 460px;
    width: 100%;
    gap: 1rem;
    padding-top: 0.5rem;
    margin-bottom: 0;
}

.partnerContent > p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 380px;
}

.partnerContent a {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s, box-shadow 0.25s;
    width: 100%;
    max-width: 440px;
    color: inherit;
}
.partnerContent a:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.partnerContent img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    max-width: none;
}
.partnerContent .lilita {
    font-size: 1rem;
    color: var(--green);
    letter-spacing: 0.03em;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .infotext { background-size: 200%; background-position: top; }
    .infotext img { width: 80%; }
    .maps { width: 92vw; height: 52vw; min-height: 220px; }
    .containter { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    nav .button {
        padding: 0.25rem 0.65rem;
        font-size: 0.78rem;
        margin: 0 0.1rem;
    }
    .sorten, .downloadKarte { padding: 0.55rem 1rem; font-size: 0.8rem; }
    .eise { margin: 0.4rem; }
    .eis { margin: 0.5rem; max-width: 70px; }
    .eis img { width: 70px; height: 70px; }
    .eis p { font-size: 0.7rem; }
    .tag { width: 110px; font-size: 0.82rem; padding: 0.65rem 0.5rem; }
    .wochentag { border-radius: 0.75rem; }
}