/* =========================
   Ziemas Nedarbi – glossy UI
   ========================= */

   :root{
    --glass-bg: rgba(255,255,255,.78);
    --glass-bg-2: rgba(255,255,255,.62);
    --glass-border: rgba(255,255,255,.55);
  
    --ink: #111827;
    --muted: rgba(17,24,39,.70);
  
    --brand-1: #ffb400; /* warm gold */
    --brand-2: #ff4fd8; /* pink */
    --brand-3: #37d3ff; /* cyan */
    --brand-4: #7c5cff; /* violet */
  
    --radius: 22px;
    --shadow: 0 22px 60px rgba(0,0,0,.28);
  }
  
  *{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  html, body{ height:100%; }
  
  body{
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: url("web_bg.jpg") center/cover fixed no-repeat;
    padding-top: 70px;
    position: relative;
    overflow-x: hidden;
  }
  
  /* Soft “color fog” on top of background */
  body::before{
    content:"";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(900px 700px at 18% 18%, rgba(255,180,0,.18), transparent 65%),
      radial-gradient(900px 700px at 82% 22%, rgba(255,79,216,.16), transparent 60%),
      radial-gradient(900px 700px at 72% 78%, rgba(55,211,255,.14), transparent 62%),
      radial-gradient(900px 700px at 22% 80%, rgba(124,92,255,.14), transparent 62%),
      linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.35));
  }
  
  /* Optional: tiny sparkles feel */
  body::after{
    content:"";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
      radial-gradient(2px 2px at 15% 25%, rgba(255,255,255,.9) 40%, transparent 41%),
      radial-gradient(2px 2px at 70% 18%, rgba(255,255,255,.85) 40%, transparent 41%),
      radial-gradient(1.6px 1.6px at 45% 55%, rgba(255,255,255,.7) 40%, transparent 41%),
      radial-gradient(2px 2px at 78% 72%, rgba(255,255,255,.8) 40%, transparent 41%),
      radial-gradient(1.4px 1.4px at 28% 78%, rgba(255,255,255,.65) 40%, transparent 41%);
  }
  
  /* Layout helpers */
  .page-wrap{
    position: relative;
    z-index: 2;
  }
  
  .hero-logo{
    position: absolute;
    left: 0; right: 0;
    z-index: 3;
  }
  
  .hero-logo .logo{
    max-width: 720px;
    margin: 0 auto;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,.35));
  }
  
  /* Main glossy container */
  .content-card{
    margin-top: 395px; /* keep your current spacing */
    border-radius: var(--radius);
    padding: clamp(18px, 3vw, 44px);
    background: linear-gradient(180deg, var(--glass-bg), var(--glass-bg-2));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px) saturate(1.15);
    -webkit-backdrop-filter: blur(14px) saturate(1.15);
    position: relative;
    overflow: hidden;
  }
  
  /* glossy highlight strip */
  .content-card::before{
    content:"";
    position:absolute;
    inset:-2px -2px auto -2px;
    height: 90px;
    background: linear-gradient(90deg,
      rgba(255,255,255,.55),
      rgba(255,255,255,.08),
      rgba(255,255,255,.42)
    );
    transform: skewY(-2deg);
    opacity: .55;
  }
  
  /* subtle colorful border glow */
  .content-card::after{
    content:"";
    position:absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: linear-gradient(120deg,
      rgba(255,180,0,.55),
      rgba(255,79,216,.55),
      rgba(55,211,255,.55),
      rgba(124,92,255,.55)
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .35;
    pointer-events:none;
  }
  
  /* Typography */
  p{ color: var(--muted); line-height: 1.75; }
  a{ color: #0b5ed7; text-decoration: none; }
  a:hover{ text-decoration: underline; }
  
  section{ position: relative; z-index: 1; }
  
  /* Headings with glossy underline strip */
  h3{
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: .55rem;
  }
  
  .section-title{
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  
  .section-title::after{
    content:"";
    position:absolute;
    left: 0;
    bottom: 2px;
  
    width: min(160px, 65%);
    height: 3px;
    border-radius: 999px;
  
    background: linear-gradient(
      90deg,
      rgba(255, 190, 90, .55),
      rgba(255, 190, 90, .22),
      rgba(255, 190, 90, .05),
      rgba(255, 190, 90, 0)
    );
  
    box-shadow:
      0 2px 8px rgba(255, 180, 90, .25);
  }
.text-white p {
  color:#fff
}  

  
  /* CTA button (tickets) */
  .cta-wrap{
    text-align:center;
    margin-top: 10px;
  }
  
  .btn-gloss{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 12px 18px;
    font-weight: 800;
    letter-spacing: .3px;
    border-radius: 14px;
    color: #0b1020;
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  .btn-gloss::before{
    content:"";
    position:absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(255,180,0,.65),
      rgba(255,79,216,.55),
      rgba(55,211,255,.55)
    );
    opacity: .22;
  }
  
  .btn-gloss:hover{
    transform: translateY(-1px);
    box-shadow: 0 24px 56px rgba(0,0,0,.28);
    text-decoration:none;
  }
  
  .btn-gloss:active{
    transform: translateY(0);
  }
  
  /* Lists nicer */
  ul{ color: var(--muted); }
  ul li{ margin: .35rem 0; }
  
  /* ===== FAQ / Accordion glossy ===== */
  .accordion{
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255,255,255,.55);
    --bs-accordion-border-radius: 16px;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--ink);
  }
  
  .accordion-item{
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 16px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42));
    box-shadow: 0 16px 40px rgba(0,0,0,.14);
    overflow: hidden;
    margin-bottom: 12px;
  }
  
  .accordion-button{
    font-weight: 800;
    color: var(--ink);
    background: transparent;
    padding: 16px 18px;
  }
  
  .accordion-button::after{
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
  }
  
  .accordion-button:not(.collapsed){
    background: linear-gradient(90deg,
      rgba(255,180,0,.12),
      rgba(255,79,216,.10),
      rgba(55,211,255,.10)
    );
  }
  
  .accordion-body{
    color: var(--muted);
    line-height: 1.75;
    padding: 16px 18px 18px;
  }
  
  /* Footer better */
  footer{
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(17,24,39,.92), rgba(17,24,39,.82)) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
  }
  
  /* Mobile tweaks */
  @media (max-width: 576px){
    .content-card{ margin-top: 310px; padding: 18px; }
    .section-title::after{ height: 7px; width: 75%; }
  }
  