/* ===== EVENTS PAGE ===== */

/* ---- HERO ---- */
.ev-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 80px;
}
.ev-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.18) saturate(1.4);
}
.ev-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent2-rgb),0.12) 0%, rgba(var(--accent-rgb),0.18) 100%);
}
.ev-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ev-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.ev-orb1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--accent2-rgb),0.25), transparent 70%); top: -120px; right: -120px; }
.ev-orb2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(var(--accent-rgb),0.2), transparent 70%); bottom: -80px; left: -80px; animation-delay: 4s; }

.ev-hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding-top: 40px; padding-bottom: 40px;
}
.ev-hero-left h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; line-height: 1.05; margin: 20px 0 20px; }
.ev-hero-left p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.ev-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.ev-hero-right {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.ev-hero-right img { width: 100%; display: block; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.ev-hero-right:hover img { transform: scale(1.03); }
.ev-hero-right-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent2-rgb),0.1), transparent 60%);
  pointer-events: none;
}

.ev-hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; z-index: 1;
}

/* ---- INTRO ---- */
.ev-intro { padding: 120px 0; background: var(--bg2); position: relative; overflow: hidden; }
.ev-intro::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(239,68,68,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ev-intro-inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.ev-intro-inner .section-tag { display: inline-block; margin-bottom: 16px; }
.ev-intro-inner h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; margin-bottom: 24px; }
.ev-intro-inner p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 40px; }

/* ---- WHAT WE DO CARDS ---- */
.ev-what { padding: 120px 0; }
.ev-what-header { text-align: center; margin-bottom: 64px; }
.ev-what-header .section-tag { display: inline-block; margin-bottom: 16px; }
.ev-what-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }

.ev-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ev-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.ev-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.ev-card:hover { transform: translateY(-6px); border-color: rgba(var(--accent2-rgb),0.35); box-shadow: 0 20px 60px rgba(var(--accent2-rgb),0.1); }
.ev-card:hover::before { opacity: 0.04; }
.ev-card-icon {
  width: 52px; height: 52px;
  background: rgba(var(--accent2-rgb),0.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1;
}
.ev-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; position: relative; z-index: 1; }
.ev-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; position: relative; z-index: 1; }

/* ---- GALLERY ---- */
.ev-gallery { padding: 120px 0; background: var(--bg2); }
.ev-gallery-header { text-align: center; margin-bottom: 64px; }
.ev-gallery-header .section-tag { display: inline-block; margin-bottom: 16px; }
.ev-gallery-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }

.ev-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.ev-gallery-item {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.ev-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
  min-height: 220px;
}
.ev-gallery-item:hover img { transform: scale(1.05); }
.ev-gallery-item:first-child { grid-row: span 2; }
.ev-gallery-item:first-child img { min-height: 460px; }
.ev-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.ev-gallery-item:hover .ev-gallery-overlay { opacity: 1; }

/* ---- CTA ---- */
.ev-cta { padding: 140px 0; position: relative; overflow: hidden; text-align: center; }
.ev-cta-orb {
  position: absolute; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent2-rgb),0.1), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.ev-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.ev-cta-inner .section-tag { display: inline-block; margin-bottom: 16px; }
.ev-cta-inner h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 20px; line-height: 1.15; }
.ev-cta-inner p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .ev-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .ev-cards { grid-template-columns: 1fr 1fr; }
  .ev-gallery-grid { grid-template-columns: 1fr 1fr; }
  .ev-gallery-item:first-child { grid-row: span 1; }
  .ev-gallery-item:first-child img { min-height: 220px; }
}
@media (max-width: 600px) {
  .ev-cards { grid-template-columns: 1fr; }
  .ev-gallery-grid { grid-template-columns: 1fr; }
}
