*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:    #E8150A;
    --dark:   #1A1A1A;
    --orange: #FF6B00;
    --light:  #F5F1EA;
    --yellow: #FFD100;
}

html { scroll-behavior: smooth; }

body {
    background: #2a2a2a;
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
}

/* ── Page wrapper: flyer on desktop, full-width on mobile ── */
.flyer {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Shadow only on larger screens where it looks like a flyer */
@media (min-width: 840px) {
    body { padding: 30px 15px; align-items: flex-start; display: flex; justify-content: center; }
    .flyer {
        min-height: auto;
        box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    }
}

/* ── Flame background ── */
.flyer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 120% 60% at 110% -10%, rgba(232,21,10,0.15) 0%, transparent 60%),
            radial-gradient(ellipse 80% 40% at -10% 110%, rgba(255,107,0,0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ── Decorative stripe ── */
/*.stripe {
    position: absolute;
    right: -6px;
    top: 180px;
    width: 12px;
    height: 340px;
    background: repeating-linear-gradient(45deg,
        var(--red) 0px, var(--red) 12px,
        var(--yellow) 12px, var(--yellow) 24px);
    opacity: 0.5;
    border-radius: 4px;
    z-index: 0;
}
@media (max-width: 480px) { .stripe { display: none; } }*/

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
    background: var(--red);
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    padding-bottom: 32px;
}

.header-inner {
    padding: 28px 36px 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.flame-icon {
    font-size: clamp(44px, 8vw, 64px);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    flex-shrink: 0;
}

.lz-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(10px, 2vw, 13px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2px;
}

.header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 10vw, 68px);
    color: #fff;
    line-height: 0.9;
    letter-spacing: 2px;
    text-shadow: 2px 4px 16px rgba(0,0,0,0.3);
}

.header h1 span { color: var(--yellow); }

.header-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(14px, 3.5vw, 22px);
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

@media (max-width: 400px) {
    .header-inner { padding: 20px 20px 8px; gap: 14px; }
}

/* ══════════════════════════════
   BODY
══════════════════════════════ */
.body {
    flex: 1;
    padding: clamp(24px, 6vw, 44px) clamp(16px, 5vw, 36px) 20px;
    position: relative;
    z-index: 1;
}

/* ── Tagline ── */
.tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.tagline::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--red);
    margin-top: 10px;
    border-radius: 2px;
}

/* ── Intro ── */
.intro {
    font-size: clamp(14px, 2.5vw, 15.5px);
    color: #333;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ══════════════════════════════
   INFO CARDS
══════════════════════════════ */
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

@media (max-width: 380px) {
    .cards { grid-template-columns: 1fr; }
}

.card {
    background: #fff;
    border-radius: 8px;
    padding: clamp(12px, 3vw, 18px) clamp(14px, 3vw, 20px);
    border-left: 5px solid var(--red);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card-icon { font-size: 24px; margin-bottom: 6px; }

.card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
}

.card-value {
    font-weight: 700;
    font-size: clamp(14px, 3vw, 17px);
    color: var(--dark);
}

.card-note {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* ══════════════════════════════
   MITMACHEN
══════════════════════════════ */
.mitmachen {
    background: var(--dark);
    border-radius: 10px;
    padding: clamp(16px, 4vw, 22px) clamp(16px, 4vw, 24px);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.mitmachen::before {
    content: '🔥';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 72px;
    opacity: 0.12;
    pointer-events: none;
}

.mitmachen h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 5vw, 30px);
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.mitmachen ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

@media (max-width: 380px) {
    .mitmachen ul { grid-template-columns: 1fr; }
}

.mitmachen ul li {
    color: #ddd;
    font-size: clamp(13px, 2.5vw, 14px);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.mitmachen ul li::before {
    content: '▸';
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
    background: var(--red);
    border-radius: 10px;
    padding: clamp(16px, 4vw, 20px) clamp(16px, 4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3px;
}

.contact-value,
.contact-value a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 5vw, 26px);
    color: #fff;
    letter-spacing: 1.5px;
    text-decoration: none;
}
.contact-value a:hover { text-decoration: underline; }

.contact-badge {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 10px 18px;
    text-align: center;
    flex-shrink: 0;
}

.contact-badge .label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-badge .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(16px, 4vw, 20px);
    color: var(--yellow);
    letter-spacing: 2px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
    background: var(--dark);
    padding: 14px clamp(16px, 5vw, 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-left {
    font-size: clamp(11px, 2.5vw, 13px);
    color: #888;
    line-height: 1.6;
}
.footer-left a {
    color: #aaa;
    text-decoration: none;
}
.footer-left a:hover { color: #fff; }

.footer-right, .footer-right a  {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(11px, 2.5vw, 13px);
    color: #aaa;
    letter-spacing: 3px;
    white-space: nowrap;
    text-decoration: none;
}

/* ══════════════════════════════
   PRINT
══════════════════════════════ */
@media print {
    body { background: white; padding: 0; display: block; }
    .flyer { box-shadow: none; max-width: 210mm; }
}