/* Fetish Festivals — яркий, плакатный стиль */
:root {
  --bg: #111;
  --surface: #1a1a1a;
  --text: #fff;
  --muted: #999;
  --red: #e63946;
  --yellow: #ffc300;
  --font-display: 'Bebas Neue', sans-serif;
  --font: 'Open Sans', sans-serif;
  --rad: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  border-top: 3px solid var(--red);
  transform: translateY(100%);
  transition: transform 0.4s;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--yellow); }
.cookie-btn { background: var(--red); color: #fff; border: none; padding: 0.5rem 1rem; font-family: var(--font-display); letter-spacing: 0.05em; cursor: pointer; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(17,17,17,0.95);
  border-bottom: 3px solid var(--red);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.08em; color: var(--yellow); text-decoration: none; }
.nav { display: flex; gap: 1.5rem; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }
.nav a:hover { color: var(--yellow); }
.toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 40%, transparent 80%); }
.hero-text { position: relative; z-index: 1; max-width: 600px; }
.hero-text h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.02em; margin-bottom: 1rem; line-height: 1.1; }
.hero-text p { color: var(--muted); margin-bottom: 1.5rem; }
.btn { display: inline-block; padding: 0.75rem 1.5rem; background: var(--red); color: #fff; text-decoration: none; font-family: var(--font-display); letter-spacing: 0.05em; transition: background 0.2s; }
.btn:hover { background: #c1121f; }
.btn.alt { background: transparent; border: 2px solid var(--yellow); color: var(--yellow); }
.btn.alt:hover { background: var(--yellow); color: var(--bg); }

.section { padding: 4rem 0; }
.section h2 { font-family: var(--font-display); text-align: center; margin-bottom: 2rem; font-size: 2rem; letter-spacing: 0.05em; }
.row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { background: var(--surface); border: 2px solid rgba(255,255,255,0.08); overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.card:hover { border-color: var(--red); transform: translateY(-4px); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card h3 { font-family: var(--font-display); padding: 1rem 1.25rem 0; font-size: 1.2rem; letter-spacing: 0.03em; }
.card p { padding: 0.5rem 1.25rem 1.25rem; color: var(--muted); font-size: 0.9rem; }

.strip { background: var(--red); padding: 2rem; text-align: center; }
.strip .container { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.strip p { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.03em; }

.footer { padding: 2rem 2rem 0; border-top: 2px solid rgba(255,255,255,0.1); }
.footer .container { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; }
.footer .container > div:first-child { color: var(--muted); font-size: 0.9rem; }
.footer .container > div:first-child strong { display: block; margin-bottom: 0.25rem; color: var(--yellow); font-family: var(--font-display); }
.footer .container > div:nth-child(2) { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--yellow); }
.footer-label { display: block; margin-bottom: 0.5rem; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,195,0,0.15); color: var(--muted); transition: background 0.2s, color 0.2s, transform 0.2s; }
.footer-social a:hover { background: var(--yellow); color: var(--bg); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; padding: 1rem 1.5rem; border-top: 2px solid rgba(255,255,255,0.1); color: var(--muted); font-size: 0.85rem; text-align: center; }

.page-head { padding: 5rem 2rem 2rem; text-align: center; }
.page-head h1 { font-family: var(--font-display); letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.page-head p { color: var(--muted); }
.page-content { max-width: 800px; margin: 0 auto; padding: 2rem; }
.page-content h2 { font-family: var(--font-display); margin: 1.5rem 0 0.5rem; font-size: 1.3rem; }
.page-content p { color: var(--muted); margin-bottom: 1rem; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; padding: 2rem; }
.contact-row label { display: block; margin-bottom: 0.25rem; }
.contact-row input, .contact-row textarea { width: 100%; padding: 0.75rem; border: 2px solid rgba(255,255,255,0.15); background: var(--surface); color: var(--text); margin-bottom: 1rem; font-family: var(--font); }
.map-container { border-radius: var(--rad); overflow: hidden; height: 350px; border: 2px solid rgba(255,255,255,0.1); }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.faq-item { border: 2px solid rgba(255,255,255,0.1); margin-bottom: 0.5rem; }
.faq-item summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; list-style: none; }
.faq-item div { padding: 0 1.25rem 1rem; color: var(--muted); }
.thank-box { text-align: center; padding: 4rem 2rem; }
.err-box { text-align: center; padding: 4rem 2rem; }
.err-box h1 { font-family: var(--font-display); font-size: 5rem; }
.legal h2 { font-family: var(--font-display); margin: 1.5rem 0 0.5rem; font-size: 1.2rem; }

@media (max-width: 768px) {
  .nav { display: none; }
  .toggle { display: block; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 1rem; border-bottom: 2px solid var(--red); }
  .contact-row { grid-template-columns: 1fr; }
}
