
    /* ============================================
       RESET — clear browser defaults
    ============================================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* ============================================
       ROOT VARIABLES — change these to retheme
    ============================================ */
    :root {
      --gold:        #c8960c;  
      --gold-light:  #f0c040;   
      --gold-dark:   #8a6208;   
      --amber-bg:    #b8820a;   
      --dark:        #0e0a04;   
      --dark-mid:    #1c1408; 
      --text-light:  #f2e4c0;   
      --text-dark:   #2a1a05;   
      --separator:   rgba(200,150,12,0.35); 
    }

    /* ============================================
       BASE — fonts, scrollbar, selection
    ============================================ */
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Crimson Text', Georgia, serif;
      background-color: var(--dark);
      color: var(--text-light);
      max-width: 500px;
      margin: 0 auto;
      overflow-x: hidden;
      /* Subtle outer glow to frame the column */
      box-shadow: 0 0 80px rgba(200,150,12,0.12), 0 0 160px rgba(200,150,12,0.06);
    }

    /* Gold text selection highlight */
    ::selection {
      background: var(--gold);
      color: var(--dark);
    }

    /* ============================================
       TYPOGRAPHY HELPERS
    ============================================ */
    .font-medieval {
      font-family: 'Uncial Antiqua', 'Palatino Linotype', serif;
    }

    .font-fell {
      font-family: 'IM Fell English', 'Palatino Linotype', serif;
    }

    /* Decorative horizontal rule — a golden line with diamond */
    .gold-rule {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 12px 0;
    }
    .gold-rule::before,
    .gold-rule::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .gold-rule-diamond {
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    /* Section headings shared style */
    .section-heading {
      font-family: 'Uncial Antiqua', serif;
      color: var(--gold);
      text-align: center;
      font-size: 1.6rem;
      letter-spacing: 0.04em;
      /* Subtle text shadow for depth */
      text-shadow: 0 2px 12px rgba(200,150,12,0.4), 0 0 30px rgba(200,150,12,0.2);
    }

    /* ============================================
       SECTION 1: HERO
       Full-width cave image with title overlay
    ============================================ */
    .hero {
      position: relative;
      width: 100%;
      /* Clip so overlay doesn't bleed */
      overflow: hidden;
    }

    .hero-bg {
      width: 100%;
      display: block;
      /* Very subtle darkening at top/bottom edges */
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, black 15%, black 85%, rgba(0,0,0,0.7) 100%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, black 15%, black 85%, rgba(0,0,0,0.7) 100%);
    }

    /* Overlay container centered over the cave opening */
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      text-align: center;
      width: 80%;
    }

    .hero-logo {
      width: 64px;
      margin-bottom: 6px;
      /* Glow effect on the logo */
      filter: drop-shadow(0 0 12px rgba(200,150,12,0.7));
      animation: pulse 3s ease-in-out infinite;
    }

    /* Subtle breathing animation on the logo */
    @keyframes pulse {
      0%, 100% { filter: drop-shadow(0 0 10px rgba(200,150,12,0.6)); }
      50%       { filter: drop-shadow(0 0 20px rgba(200,150,12,1)); }
    }

    .hero-title {
      font-family: 'Uncial Antiqua', serif;
      font-size: 2.4rem;
      color: var(--gold-light);
      text-shadow:
        0 0 20px rgba(200,150,12,0.9),
        0 2px 4px rgba(0,0,0,0.8);
      letter-spacing: 0.06em;
      line-height: 1;
      margin-bottom: 10px;
    }

    .hero-subtitle {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: var(--text-light);
      text-shadow: 0 1px 6px rgba(0,0,0,1);
      line-height: 1.5;
    }

    /* ============================================
       SECTION 2: INVITE BANNER
       Warm golden strip with the "come out of the cave" text
    ============================================ */
    .invite {
      background: linear-gradient(135deg, #9a6a06 0%, var(--amber-bg) 40%, #9a6a06 100%);
      padding: 28px 28px;
      text-align: center;
      /* Top and bottom ornamental borders */
      border-top: 2px solid var(--gold-light);
      border-bottom: 2px solid var(--gold-dark);
      position: relative;
    }

    /* Decorative corner accents using pseudo-elements */
    .invite::before,
    .invite::after {
      content: '❧';
      position: absolute;
      font-size: 1.4rem;
      color: var(--dark);
      opacity: 0.4;
      top: 50%;
      transform: translateY(-50%);
    }
    .invite::before { left: 10px; }
    .invite::after  { right: 10px; transform: translateY(-50%) scaleX(-1); }

    .invite p {
      font-family: 'Uncial Antiqua', serif;
      font-size: 1.05rem;
      color: var(--text-dark);
      line-height: 1.7;
    }

    /* ============================================
       SECTION 3: KNIGHTS — "Povstání Legend"
       Full-width knights image with heading above
    ============================================ */
    .knights {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .knights-img {
      width: 100%;
      display: block;
    }

    /* Heading sits in a semi-transparent band at the top */
    .knights-heading {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 14px 20px 18px;
      background: linear-gradient(to bottom, rgba(14,10,4,0.85) 0%, transparent 100%);
      text-align: center;
    }

    /* ============================================
       SECTION 4: INFO CARDS — details on gold bg
    ============================================ */
    .info-section {
      background: linear-gradient(180deg, #9a6a06 0%, var(--amber-bg) 20%, var(--amber-bg) 80%, #9a6a06 100%);
      padding: 28px 20px;
    }

    /* Two columns grid */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 20px;
    }

    /* Individual info card */
    .info-card {
      background: rgba(0,0,0,0.15);
      border: 1px solid rgba(200,150,12,0.3);
      border-radius: 6px;
      padding: 14px 12px;
    }

    .info-card h3 {
      font-family: 'Uncial Antiqua', serif;
      font-size: 0.95rem;
      color: var(--dark);
      margin-bottom: 8px;
      text-shadow: 0 1px 2px rgba(255,255,255,0.2);
    }

    .info-card p, .info-card li {
      font-family: 'IM Fell English', serif;
      font-size: 0.82rem;
      color: var(--text-dark);
      line-height: 1.5;
    }

    /* Cast list — no bullets, indented */
    .cast-list {
      list-style: none;
    }
    .cast-list li {
      padding: 1px 0;
    }
    .cast-list li::before {
      content: '— ';
      color: var(--gold-dark);
    }

    /* Schedule scroll: parchment-style background */
    .schedule-scroll {
      background: rgba(255,220,120,0.2);
      border: 1px solid rgba(200,150,12,0.5);
      border-radius: 4px;
      padding: 10px;
    }

    .schedule-scroll p {
      font-family: 'IM Fell English', serif;
      font-size: 0.78rem;
      color: var(--text-dark);
      line-height: 1.9;
    }

    /* Time bold emphasis */
    .schedule-scroll strong {
      font-weight: 600;
      color: #1a0e00;
    }

    /* ============================================
       SECTION 5: TEASER (Upoutávka)
       Lion image left, story text right
    ============================================ */
    .teaser {
      background: linear-gradient(180deg, #9a6a06 0%, var(--amber-bg) 100%);
      padding: 0 20px 28px;
    }

    .teaser-inner {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    /* Lion background image — crops to show just the lion */
    .teaser-lion {
      width: 90px;
      flex-shrink: 0;
      border-radius: 4px;
      /* Fade the left edge so it bleeds into the bg */
      mask-image: linear-gradient(to right, transparent 0%, black 30%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
    }

    .teaser-text h3 {
      font-family: 'Uncial Antiqua', serif;
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .teaser-text p {
      font-family: 'IM Fell English', serif;
      font-size: 0.82rem;
      color: var(--text-dark);
      line-height: 1.55;
      margin-bottom: 8px;
    }

    .teaser-question {
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: var(--dark);
      font-weight: 600;
    }

    /* ============================================
       SECTION 6: SIGNUP
       "Get your FREE ticket"
    ============================================ */
    .signup {
      background: linear-gradient(180deg, var(--amber-bg) 0%, #9a6a06 100%);
      padding: 24px 20px 30px;
      text-align: center;
      border-top: 2px solid var(--gold-light);
      border-bottom: 2px solid var(--gold-dark);
    }

    .signup h2 {
      font-family: 'Uncial Antiqua', serif;
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 16px;
      line-height: 1.4;
    }

    /* The red form placeholder */
    .form-placeholder {
      background: linear-gradient(135deg, #815b07, #d1a206);
      border: 2px solid #000000;
      border-radius: 6px;
      width: 100%;
      min-height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: rgba(0, 0, 0, 0.7);
      font-family: 'IM Fell English', serif;
      font-size: 0.85rem;
      font-style: italic;
    }

    /* Small icon above placeholder text */
    .form-placeholder::before {
      content: '✦';
      font-size: 1.5rem;
      color: rgba(0, 0, 0, 0.4);
    }

 /* partneri */
    .partners {
      background-color: var(--dark-mid);
      padding: 30px 24px 24px;
      text-align: center;
    }

    .partner-logos {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 20px;
    }

    /* Base logo style — invert dark logos for dark background */
    .partner-logo {
      max-width: 100px;
      max-height: 55px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.75;
      transition: opacity 0.2s ease, filter 0.2s ease;
    }

    .partner-logo:hover {
      opacity: 1;
    }

    /* Lysá nad Labem logo has color — don't invert it */
    .partner-logo-color {
      max-width: 80px;
      max-height: 55px;
      object-fit: contain;
      opacity: 0.85;
      transition: opacity 0.2s ease;
    }

    .partner-logo-color:hover {
      opacity: 1;
    }

    /* ============================================
       FOOTER
    ============================================ */
    footer {
      background-color: var(--dark);
      border-top: 1px solid var(--separator);
      text-align: center;
      padding: 14px 16px;
      font-family: 'IM Fell English', serif;
      font-style: italic;
      font-size: 0.72rem;
      color: rgba(209, 156, 20, 0.45);
      letter-spacing: 0.08em;
    }

    /* ============================================
       RESPONSIVE — tablet and up
    ============================================ */
    @media (min-width: 600px) {
      body { max-width: 560px; }
      .hero-title { font-size: 3rem; }
      .section-heading { font-size: 1.9rem; }
    }

    @media (min-width: 900px) {
      body {
        max-width: 520px;
        box-shadow: 0 0 100px rgba(200,150,12,0.18), 0 0 200px rgba(200,150,12,0.08);
      }
}
