/* ─────────────────────────────────────────────────────────────
   EVENT MANAGEMENT PAGE — Emerald / Midnight Green Palette
───────────────────────────────────────────────────────────────── */

:root {
  --ev-ff-serif: 'Georgia', 'Playfair Display', 'Noto Serif', serif;
  --ev-ff-bengali: 'Noto Serif Bengali', 'Hind Siliguri', serif;
  --ev-ff-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  
  --ev-green: #1A7A5E;
  --ev-green-mid: #0F5E45;
  --ev-green-lt: #27AE82;
  --ev-green-pale: #EAF7F3;
  --ev-dark: #0D1F1A;
  --ev-border: #d1e8e0;
  --ev-grey: #5a7068;
  
  --ev-shadow-sm: 0 2px 8px rgba(15, 94, 69, 0.08);
  --ev-shadow-md: 0 4px 16px rgba(15, 94, 69, 0.14);
  --ev-shadow-lg: 0 8px 28px rgba(15, 94, 69, 0.18);
}

.event-page { padding: 0; margin: 0; }

/* ── HERO ── */
.ev-hero {
  position: relative;
  height: 50vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ev-hero-bg-img { position: absolute; inset: 0; overflow: hidden; }
.ev-hero-bg-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65) contrast(1.1) saturate(0.9); }
.ev-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10, 30, 22, 0.45) 0%,
    rgba(10, 30, 22, 0.65) 40%,
    rgba(10, 30, 22, 0.70) 60%,
    rgba(10, 30, 22, 0.55) 100%
  );
  backdrop-filter: blur(1px);
}
.ev-hero-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 40px 20px; }
.ev-hero-text {
  max-width: 750px; width: 100%; color: #fff;
  animation: evFadeUp 1s ease-out;
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ev-hero-bengali {
  font-family: var(--ev-ff-bengali); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #7DDDBC; margin-bottom: 16px; letter-spacing: 0.08em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7); font-weight: 500;
}
.ev-hero-title {
  font-family: var(--ev-ff-serif);
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 6px 18px rgba(0,0,0,0.7);
  letter-spacing: -0.02em; color: #fff;
}
.ev-hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.3rem); color: rgba(255,255,255,0.95);
  margin-bottom: 40px; line-height: 1.7;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  max-width: 600px; margin-left: auto; margin-right: auto; font-weight: 400;
}
.ev-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--ev-green), var(--ev-green-mid));
  color: #fff; font-family: var(--ev-ff-sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem); font-weight: 700; letter-spacing: 0.1em;
  padding: clamp(12px, 2vw, 18px) clamp(28px, 4vw, 44px);
  border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(26,122,94,0.45), 0 8px 25px rgba(0,0,0,0.3);
  text-transform: uppercase; white-space: nowrap; width: 100%; max-width: 400px; margin: 20px auto 0;
}
.ev-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,122,94,0.65), 0 12px 35px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, var(--ev-green-lt), var(--ev-green));
}
@keyframes evFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ── ABOUT ── */
.ev-about { padding: 80px 0; background: #fff; }
.ev-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ev-section-title { font-family: var(--ev-ff-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--ev-dark); line-height: 1.2; margin-bottom: 16px; }
.ev-about-intro { font-size: 1.05rem; line-height: 1.8; color: var(--ev-grey); margin-bottom: 32px; }
.ev-about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.ev-about-feature {
  padding: 24px; background: var(--ev-green-pale);
  border-radius: 12px; text-align: center; transition: all 0.3s ease;
  border: 1px solid rgba(26,122,94,0.12);
}
.ev-about-feature:hover { transform: translateY(-4px); box-shadow: var(--ev-shadow-md); }
.ev-feature-icon { font-size: 2.5rem; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; height: 60px; }
.ev-about-feature h4 { font-family: var(--ev-ff-serif); font-size: 1rem; font-weight: 700; color: var(--ev-dark); margin-bottom: 8px; }
.ev-about-feature p { font-size: 0.9rem; color: var(--ev-grey); line-height: 1.6; }
.ev-about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.ev-stat {
  padding: 24px;
  background: linear-gradient(135deg, var(--ev-green-pale), rgba(39,174,130,0.08));
  border: 1px solid var(--ev-border); border-radius: 12px; transition: all 0.3s ease;
}
.ev-stat:hover { border-color: var(--ev-green); box-shadow: var(--ev-shadow-sm); }
.ev-stat-num { font-family: var(--ev-ff-serif); font-size: 2rem; font-weight: 700; color: var(--ev-green); display: block; margin-bottom: 4px; }
.ev-stat-label { font-size: 0.8rem; color: var(--ev-grey); text-transform: uppercase; letter-spacing: 0.1em; }
.ev-about-image { border-radius: 16px; overflow: hidden; box-shadow: var(--ev-shadow-lg); }
.ev-about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ev-about-image:hover img { transform: scale(1.02); }

/* ── EVENT TYPES ── */
.ev-wishlist { padding: 80px 0; background: var(--ev-green-pale); }
.ev-section-head { text-align: center; margin-bottom: 48px; }
.ev-section-desc { font-size: 1rem; color: var(--ev-grey); max-width: 500px; margin: 12px auto 0; line-height: 1.6; }
.ev-wishlist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.ev-wishlist-card { position: relative; height: 280px; border-radius: 14px; overflow: hidden; cursor: pointer; box-shadow: var(--ev-shadow-md); transition: all 0.3s ease; }
.ev-wishlist-card:hover { box-shadow: var(--ev-shadow-lg); }
.ev-wishlist-img { position: relative; width: 100%; height: 100%; overflow: hidden; }
.ev-wishlist-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ev-wishlist-card:hover .ev-wishlist-img img { transform: scale(1.08); }
.ev-wishlist-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,22,0.65), transparent 60%); transition: background 0.3s ease; }
.ev-wishlist-card:hover .ev-wishlist-overlay { background: linear-gradient(to top, rgba(10,30,22,0.8), transparent 50%); }
.ev-wishlist-label { position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff; font-family: var(--ev-ff-serif); font-size: 1.1rem; font-weight: 700; z-index: 2; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

/* ── PROCESS ── */
.ev-process { padding: 80px 0; background: #fff; }
.ev-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; align-items: flex-start; }
.ev-step { position: relative; padding-top: 20px; }
.ev-step-number { font-family: var(--ev-ff-serif); font-size: 2.5rem; font-weight: 700; color: rgba(26,122,94,0.18); line-height: 1; margin-bottom: 12px; }
.ev-step-title { font-family: var(--ev-ff-serif); font-size: 1.15rem; font-weight: 700; color: var(--ev-dark); margin-bottom: 8px; }
.ev-step-desc { font-size: 0.85rem; color: var(--ev-grey); line-height: 1.6; }

/* ── GALLERY ── */
.ev-gallery { padding: 80px 0; background: var(--ev-green-pale); }
.ev-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ev-gallery-item { position: relative; height: 240px; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: var(--ev-shadow-sm); transition: all 0.3s ease; }
.ev-gallery-item:hover { box-shadow: var(--ev-shadow-md); }
.ev-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ev-gallery-item:hover img { transform: scale(1.1); }
.ev-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,22,0.7), transparent 70%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s ease; }
.ev-gallery-item:hover .ev-gallery-overlay { opacity: 1; }
.ev-gallery-location { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* ── CTA ── */
.ev-cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--ev-green-pale) 0%, #fff 100%); position: relative; overflow: hidden; }
.ev-cta-bg {
  position: absolute; inset: 0; opacity: 0.18;
  background-image: radial-gradient(circle at 20% 50%, var(--ev-green) 0%, transparent 50%), radial-gradient(circle at 80% 50%, var(--ev-green-lt) 0%, transparent 50%);
  pointer-events: none;
}
.ev-cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.ev-cta-ornament { margin-bottom: 20px; display: flex; justify-content: center; }
.ev-cta-star { font-size: 1.8rem; display: block; animation: evSpin 20s linear infinite; color: var(--ev-green); }
@keyframes evSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ev-cta-bengali { font-family: var(--ev-ff-bengali); font-style: italic; font-size: 1.1rem; color: var(--ev-green); letter-spacing: 0.08em; margin-bottom: 12px; display: block; font-weight: 500; }
.ev-cta-title { font-family: var(--ev-ff-serif); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; color: var(--ev-dark); line-height: 1.1; margin-bottom: 20px; }
.ev-cta-text { font-size: 1.05rem; color: #4a6058; line-height: 1.8; margin-bottom: 40px; }
.ev-cta-actions { margin-bottom: 32px; }
.ev-cta-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  font-family: var(--ev-ff-sans); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 15px 40px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(37,211,102,0.3); text-transform: uppercase;
}
.ev-cta-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); background: #1ab755; }
.ev-cta-phones { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ev-phone-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(26,122,94,0.12); border: 2px solid var(--ev-green);
  color: var(--ev-green-mid); font-family: var(--ev-ff-sans); font-size: 0.95rem;
  font-weight: 700; padding: 11px 24px; border-radius: 50px; text-decoration: none; transition: all 0.3s ease;
}
.ev-phone-icon { font-size: 1.1rem; }
.ev-phone-pill:hover { background: var(--ev-green); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,94,0.28); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ev-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .ev-about-features { grid-template-columns: repeat(2, 1fr); }
  .ev-about-stats { grid-template-columns: 1fr; }
  .ev-wishlist-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ev-hero { height: 85vh; min-height: 500px; }
  .ev-about, .ev-wishlist, .ev-gallery, .ev-process { padding: 60px 0; }
  .ev-about-features { grid-template-columns: 1fr; }
  .ev-wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ev-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ev-gallery-item { height: 180px; }
  .ev-process-steps { grid-template-columns: 1fr; gap: 20px; }
  .ev-section-title { font-size: clamp(1.6rem, 4vw, 2.5rem); }
  .ev-cta-section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .ev-hero { height: 80vh; min-height: 400px; }
  .ev-hero-content { padding: 30px 15px; }
  .ev-hero-title { font-size: clamp(2rem, 7vw, 3rem); margin-bottom: 12px; }
  .ev-btn-primary { width: 95%; max-width: 280px; padding: 11px 20px; font-size: 0.85rem; }
  .ev-about { padding: 50px 0; }
  .ev-about-feature { padding: 16px; }
  .ev-section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .ev-cta-section { padding: 50px 0; }
  .ev-cta-whatsapp { width: 100%; padding: 13px 20px; font-size: 0.8rem; }
  .ev-cta-phones { flex-direction: column; gap: 10px; }
  .ev-phone-pill { width: 100%; padding: 10px 16px; font-size: 0.85rem; }
}