/* =============================================================================
   Slipknot Tribute CZ — styl webu (věrná kopie originálu: černá + bílá,
   Oswald pro nadpisy, Montserrat ≈ Avenir pro text, Jost ≈ Futura pro přezdívky)
   ========================================================================== */

:root {
  --bg:        #000;
  --text:      #fff;
  --muted:     #cfcfcf;
  --line:      #2a2a2a;
  --accent:    #e21d2b;      /* jen decentní zvýraznění (odkazy při najetí) */
  --maxw:      1000px;
  --font-head: "Oswald", "Arial Narrow", sans-serif;   /* nadpisy, menu, jména */
  --font-body: "Montserrat", Arial, sans-serif;         /* ≈ Avenir – texty */
  --font-alt:  "Jost", "Century Gothic", sans-serif;    /* ≈ Futura – přezdívky */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; margin: 0; line-height: 1.25; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 64px 0; scroll-margin-top: 68px; }  /* odsazení kvůli ukotvené horní liště */
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(34px, 6vw, 56px); letter-spacing: -0.02em; color: var(--text);
}
.section-head .rule { display: none; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--accent); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Header / navigace (bez loga – jen menu + sítě, jako originál) ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,.9); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 26px; min-height: 62px; }
.brand { display: none; }                 /* originál nemá v hlavičce logo */
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; margin-right: auto; }
.nav-links a {
  font-family: var(--font-head); font-size: 19px; font-weight: 400; color: var(--text);
  opacity: .92; padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; border-bottom-color: var(--accent); }

.nav-social { display: flex; gap: 16px; align-items: center; }
.nav-social a { color: var(--text); display: inline-flex; opacity: .9; }
.nav-social a:hover { opacity: 1; color: var(--accent); }
.nav-social svg { width: 20px; height: 20px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 10px; line-height: 0; -webkit-tap-highlight-color: rgba(226,29,43,.3); touch-action: manipulation; }
.nav-toggle svg { width: 30px; height: 30px; }

/* ---- Hero (tmavý, agresivní – vtáhne fanouška) ---------------------- */
.hero { position: relative; overflow: hidden; text-align: center; background: #000; color: #fff;
  padding: clamp(52px, 9vw, 116px) 0 clamp(40px, 6vw, 70px); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(226,29,43,.32), transparent 62%),
    radial-gradient(760px 420px at 50% 118%, rgba(226,29,43,.14), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 1px, transparent 1px 7px),
    #000; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(125% 120% at 50% 42%, transparent 52%, rgba(0,0,0,.9) 100%); }
.hero-inner { position: relative; z-index: 1; }
.hero img.logo { width: min(800px, 90vw); height: auto; margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.6)) drop-shadow(0 0 22px rgba(226,29,43,.28)); }
.hero .tagline {
  font-family: var(--font-head); font-weight: 500; color: #fff;
  font-size: clamp(24px, 5vw, 50px); line-height: 1.2; margin-top: 22px;
  text-shadow: 0 2px 22px rgba(0,0,0,.7); }
.hero .tagline span { color: var(--accent); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-actions .btn { margin-top: 0; }
.hero-social { display: flex; gap: 20px; justify-content: center; margin-top: 26px; }
.hero-social a { color: #fff; opacity: .85; transition: transform .15s, color .15s, opacity .15s; }
.hero-social a:hover { color: var(--accent); opacity: 1; transform: translateY(-2px); }
.hero-social svg { width: 30px; height: 30px; }
.hero-next { margin-top: 36px; display: flex; justify-content: center; }
.hero-next-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px;
  background: rgba(0,0,0,.5); border: 1px solid rgba(226,29,43,.55); border-left: 4px solid var(--accent);
  border-radius: 4px; padding: 12px 22px; color: #fff; backdrop-filter: blur(4px); max-width: 92vw; }
.hero-next-card:hover { border-color: var(--accent); background: rgba(226,29,43,.14); }
.hn-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--accent); }
.hn-date { font-family: var(--font-body); font-weight: 800; font-size: 16px; }
.hn-title { font-family: var(--font-body); font-weight: 700; font-size: 16px; }
.hn-where { color: var(--muted); font-size: 15px; }
.hn-go { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; font-size: 13px; color: #fff; }

/* ---- Akce (jednoduchý seznam, bílé na černé) ------------------------- */
.events-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.event-card {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 26px; align-items: center;
  padding: 26px 4px; border-bottom: 1px solid var(--line);
}
.event-date { font-family: var(--font-body); font-weight: 800; }
.event-date .dd { display: block; font-size: 16px; }
.event-date .yy { display: block; font-size: 15px; color: var(--muted); font-weight: 600; }
.event-main h3 { font-family: var(--font-body); font-weight: 800; font-size: clamp(20px, 3vw, 30px); line-height: 1.15; }
.event-main .meta { font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 16px; margin-top: 6px; }
.event-main .meta b { color: var(--text); font-weight: 700; }
.event-cta {
  font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--text);
  border: 1px solid #555; border-radius: 2px; padding: 10px 20px; white-space: nowrap;
}
.event-cta:hover { border-color: var(--text); background: var(--text); color: #000; }
.events-empty { color: var(--muted); text-align: center; }
.event-card.past { opacity: .5; }
.past-details { margin-top: 26px; }
.past-toggle {
  display: inline-block; margin: 0 auto; background: none; border: 1px solid #555; color: var(--muted);
  font-family: var(--font-body); font-size: 16px; padding: 10px 20px; border-radius: 2px; cursor: pointer;
  list-style: none; text-align: center;
}
.past-details { text-align: center; }
.past-details .events-list { text-align: left; }
.past-toggle::-webkit-details-marker { display: none; }
.past-toggle::marker { content: ""; }
.past-toggle:hover { color: var(--text); border-color: var(--text); }

/* ---- Novinky (3 karty v řadě) --------------------------------------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card { display: flex; flex-direction: column; }
.news-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: #111; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-card:hover .thumb img { transform: scale(1.04); }
.news-card .body { padding: 16px 2px 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card h3 { font-family: var(--font-head); font-weight: 500; font-size: 22px; }
.news-card h3 a:hover { color: var(--accent); }
.news-card p { margin: 0; color: var(--muted); font-size: 16px; flex: 1; }
.news-card .foot { display: flex; gap: 8px 14px; color: #9a9a9a; font-size: 14px; align-items: center; margin-top: 6px; flex-wrap: wrap; }
.news-card .foot .author { margin-right: auto; }

/* srdíčko / lajk */
.like-btn { background: none; border: 0; cursor: pointer; color: var(--muted); font-family: var(--font-body); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 2px 4px; -webkit-tap-highlight-color: rgba(226,29,43,.25); }
.like-btn .hrt { color: #555; font-size: 17px; line-height: 1; transition: transform .15s, color .15s; }
.like-btn:hover .hrt { color: var(--accent); }
.like-btn.liked { color: var(--text); cursor: default; }
.like-btn.liked .hrt { color: var(--accent); }
.like-btn:active .hrt { transform: scale(1.35); }

/* prokliknutelný nadpis sekce + odkaz na celou stránku */
.section-head .section-link { display: inline-block; color: inherit; }
.section-head .section-link h2 { transition: color .15s; }
.section-head .section-link:hover h2 { color: var(--accent); }
.section-head .section-link h2::after { content: " ›"; color: var(--accent); }
.section-more { text-align: center; margin-top: 30px; }
.page-lead { color: var(--muted); margin: -4px 0 28px; }

/* patička detailu novinky */
.post-foot { display: flex; align-items: center; gap: 22px; margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; flex-wrap: wrap; }
.post-foot .like-btn { font-size: 16px; }

/* ---- Kdo jsme + členové ---------------------------------------------- */
.about-lead {
  max-width: 760px; margin: 0 auto 46px; text-align: center;
  font-family: var(--font-body); font-size: clamp(18px, 2.4vw, 22px); color: var(--text);
}
.about-lead p { margin: 0 0 10px; }
.members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 30px; }
.member { text-align: center; }
.member .photo { aspect-ratio: 287/323; overflow: hidden; background: #111; }
.member .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .35s; }
.member:hover .photo img { transform: scale(1.05); }
.member .name { padding-top: 14px; display: flex; flex-direction: column; gap: 2px; }
.member .name .n { font-family: var(--font-head); font-weight: 500; font-size: 20px; color: var(--text); }
.member .name .nick { font-family: var(--font-alt); font-weight: 400; font-size: 16px; letter-spacing: -0.01em; color: var(--muted); }

/* ---- Footer ---------------------------------------------------------- */
.site-footer { padding: 50px 0; text-align: center; border-top: 1px solid var(--line); }
.site-footer .social { display: flex; justify-content: center; gap: 20px; margin-bottom: 18px; }
.site-footer .social a { color: var(--text); opacity: .9; }
.site-footer .social a:hover { opacity: 1; color: var(--accent); }
.site-footer .social svg { width: 24px; height: 24px; }
.site-footer .mail { font-family: var(--font-body); font-size: 18px; }
.site-footer .mail a:hover { color: var(--accent); }
.site-footer .copy { color: #8a8a8a; font-size: 13px; margin-top: 12px; }

/* ---- Detailové stránky ---------------------------------------------- */
.page { padding: 44px 0 72px; }
.breadcrumb { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--accent); }
.detail-title { font-size: clamp(30px, 6vw, 56px); letter-spacing: -0.02em; margin-bottom: 10px; }
.detail-sub { font-family: var(--font-body); font-weight: 600; color: var(--muted); margin-bottom: 26px; text-transform: none; }
.detail-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.detail-body p { margin: 0 0 16px; }
.detail-poster { overflow: hidden; }
.info-box { border: 1px solid var(--line); padding: 22px 24px; }
.info-box dt { font-family: var(--font-head); font-weight: 500; color: var(--muted); font-size: 14px; margin-top: 16px; text-transform: uppercase; letter-spacing: .04em; }
.info-box dt:first-child { margin-top: 0; }
.info-box dd { margin: 3px 0 0; font-size: 18px; }
.btn { display: inline-block; font-family: var(--font-body); font-weight: 700; background: var(--accent); color: #fff; padding: 12px 22px; border-radius: 2px; margin-top: 18px; letter-spacing: .01em; }
.btn:hover { background: #ff2a38; color: #fff; }
.btn.ghost { background: none; border: 1px solid #555; color: var(--text); }
.btn.ghost:hover { border-color: var(--text); background: none; }
.btn-lg { font-size: 20px; padding: 14px 30px; }
.btn.dl { display: inline-flex; align-items: center; gap: 10px; }
.dl-ic { width: 20px; height: 20px; }
.epk { margin-top: 8px; }
.epk-heading { font-family: var(--font-head); font-weight: 500; font-size: clamp(24px, 4vw, 34px); margin: 30px 0 6px; }
.epk-intro { color: var(--muted); margin: 0 0 18px; }
.share { margin-top: 28px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.share span { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.share a, .share-copy { border: 1px solid #555; border-radius: 2px; padding: 8px 14px; font-size: 15px; color: var(--text); background: none; font-family: var(--font-body); cursor: pointer; }
.share a:hover, .share-copy:hover { border-color: var(--text); }
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin: 10px 0 32px; }
.req h3 { font-family: var(--font-head); font-weight: 500; font-size: 22px; margin-bottom: 10px; }
.req p { margin: 0; color: var(--muted); }
.docs { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Responzivita ---------------------------------------------------- */
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-social { display: none; }
  .nav { justify-content: space-between; }
  .nav-links {
    position: absolute; top: 62px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #0b0b0b; border-bottom: 1px solid var(--line); margin: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 440px; }
  .nav-links li { display: block; width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 17px 24px; font-size: 21px; border-bottom: 1px solid var(--line); -webkit-tap-highlight-color: rgba(226,29,43,.25); }
  .nav-links a:active { background: rgba(226,29,43,.18); }
  .nav-links a.active { border-bottom-color: var(--line); border-left: 3px solid var(--accent); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .members { grid-template-columns: repeat(3, 1fr); gap: 26px 18px; }
  .req-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 48px 0; }
  .event-card { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .event-cta { justify-self: start; margin-top: 6px; }
  .news-grid { grid-template-columns: 1fr; }
  .members { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
