
/* =========================
   BASE RESET
========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
  overflow-x: hidden;

  /* smoky stage background */
  background:
    radial-gradient(circle at 20% 20%, rgba(183,255,74,0.06), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.04), transparent 45%),
    #070709;
}

/* =========================
   BRAND
========================= */

:root {
  --accent: #b7ff4a;
  --text: #f5f5f5;
  --muted: #cfcfcf;
}

/* =========================
   CURTAIN (WORKING)
========================= */

.site-curtain {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  animation: curtainReveal 1.2s ease forwards;
  pointer-events: none;
}

@keyframes curtainReveal {
  0% { opacity: 1; }
  60% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* =========================
   LAYOUT CONTAINERS (FIXED MARGINS)
========================= */

.container,
.entry-content,
.page-content {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 40px 16px;
}

/* =========================
   LINKS
========================= */

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* =========================
   HEADER
========================= */

.site-header {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(183,255,74,0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--text);
  font-size: 1rem;
}

.nav-menu li a:hover {
  color: var(--accent);
}

/* =========================
   HERO
========================= */

.hero-full {
  height: 85vh;
  display: flex;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #141418, #000);
}

.hero-left,
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
  z-index: 3;
}

/* =========================
   🎭 CURSOR SPOTLIGHT
========================= */

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(183,255,74,0.18),
    transparent 45%
  );

  filter: blur(35px);
}

/* vignette */
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: radial-gradient(
    circle at center,
    transparent 40%,
    rgba(0,0,0,0.8) 100%
  );
}

/* =========================
   IMAGES (GLOBAL FIX)
========================= */

img {
  max-width: 100%;
  height: auto;
}

/* FORCE CENTERING (YOUR ISSUE FIXED HERE) */
.entry-content img,
.page-content img,
.wp-block-image img,
.elementor img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   HERO IMAGE SIZE FIX
========================= */

img[src*="siyah-homepage.jpg"] {
  max-width: 320px !important;
  display: block;
  margin: 20px auto;
}

/* =========================
   🎬 ACT SYSTEM
========================= */

.act {
  padding: 80px 0;
}

/* =========================
   EVENTS (FIXED GRID - SIDE BY SIDE AGAIN)
========================= */

.events .container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* smaller cards restored */
.event-card {
  background: #000;
  border: 1px solid rgba(183,255,74,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183,255,74,0.3);
}

/* smaller images */
.event-image {
  height: 180px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   SOCIALS
========================= */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  color: var(--muted);
}

.social-links a:hover {
  color: var(--accent);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(183,255,74,0.15);
  padding: 60px 0;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .hero-full {
    flex-direction: column;
    height: auto;
  }

  .events .container {
    grid-template-columns: 1fr;
  }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  padding-bottom: 60px;
}

/* HERO */

.contact-hero {
  text-align: center;
  padding: 60px 20px 20px;
}

.contact-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.contact-tagline {
  color: var(--accent);
  letter-spacing: 1px;
}

/* CONTENT */

.contact-content {
  max-width: 700px;
  text-align: center;
}

.contact-content p {
  margin-bottom: 20px;
}

/* ACTION BUTTONS */

.contact-actions {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin: 8px;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #000;
}

.btn:hover {
  background: var(--accent);
  color: #000;
}

/* =========================
   CONTACT FUNNEL
========================= */

.contact-funnel {
  padding: 40px 0 20px;
}

.funnel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.funnel-card {
  background: #000;
  border: 1px solid rgba(183,255,74,0.15);
  padding: 20px;
  text-align: center;
  transition: 0.25s ease;
}

.funnel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183,255,74,0.4);
}

.funnel-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.funnel-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #ccc;
}

/* =========================
   CONTACT CONTENT
========================= */

.contact-content {
  max-width: 700px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  text-align: center;
}