@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary: #02060f;
  --bg-secondary: #050b14;
  --bg-card: rgba(10, 18, 30, 0.6);
  --bg-card-hover: rgba(15, 26, 45, 0.8);
  --bg-glass: rgba(116, 204, 244, 0.05);
  
  --green-neon: #74ccf4;
  --green-bright: #aee2fa;
  --green-glow: #4bb3e3;
  --green-subtle: rgba(116, 204, 244, 0.15);
  --green-border: rgba(116, 204, 244, 0.3);

  --text-primary: #f0f6fc;
  --text-secondary: #8b9eb3;
  --text-muted: #5c748e;
  --text-green: #74ccf4;

  --border-subtle: rgba(255,255,255,0.08);
  
  /* Aliases for admin JS compatibility */
  --border: rgba(255,255,255,0.08);
  --surface: #0a121e;
  
  --shadow-green: 0 0 30px rgba(116, 204, 244, 0.15);
  --glow-text: 0 0 20px rgba(116, 204, 244, 0.6);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(2, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 40px; }
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green-neon); }
.btn-nav-lista {
  background: var(--green-neon);
  color: #02060f !important;
  font-family: 'Syne', sans-serif;
  font-weight: 800 !important;
  padding: 12px 28px;
  border-radius: 99px;
  box-shadow: var(--shadow-green);
}
.btn-nav-lista:hover {
  background: var(--green-bright);
  transform: scale(1.05);
}

/* Hamburger */
.hamburger { display: none; background:none; border:none; color:var(--text-primary); font-size:1.5rem; cursor:pointer; }
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu {
    position: fixed; top:0; right:-100%; width:80%; height:100vh;
    background: var(--bg-secondary); border-left: 1px solid var(--border-subtle);
    z-index: 1001; padding: 100px 40px; transition: var(--transition);
  }
  .mobile-menu.open { right: 0; }
  .mobile-menu ul { list-style:none; display:flex; flex-direction:column; gap:24px; }
  .mobile-menu a { font-size: 1.2rem; font-weight: 600; text-transform:uppercase; color: var(--text-primary); }
}

/* ── Hero Split Layout ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-image {
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 55%;
  background-image: url('../assets/gallery2.jpg');
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(to right, transparent, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 50%;
  padding-left: max(24px, calc((100vw - 1300px) / 2 + 24px));
}
.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-neon);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-green);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-primary);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.btn-primary {
  background: var(--green-neon);
  color: #02060f;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: 99px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--text-primary);
}

@media (max-width: 992px) {
  .hero-bg-image { width: 100%; mask-image: linear-gradient(to top, transparent, black 80%); -webkit-mask-image: linear-gradient(to top, transparent, black 80%); opacity: 0.4;}
  .hero-content { width: 100%; padding-right: 24px; text-align: center; display: flex; flex-direction: column; align-items: center;}
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ── Statistics / Highlights ── */
.highlights-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(5, 11, 20, 0.5);
}
.highlights-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.highlight-item {
  text-align: center;
}
.highlight-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-neon);
  line-height: 1;
  text-shadow: var(--glow-text);
}
.highlight-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* ── Section Titles ── */
.section-header {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
}
.section-title span { color: var(--green-neon); }

/* ── Events Carousel / Cards ── */
.events-section { padding: 120px 0; }
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.evento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.evento-card:hover {
  border-color: var(--border-green);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.evento-card-img {
  position: relative;
  height: 240px;
  width: 100%;
}
.evento-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.evento-card:hover .evento-card-img img { transform: scale(1.05); }

.evento-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(2, 6, 15, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}
.evento-date-badge .day {
  font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--green-neon); line-height: 1;
}
.evento-date-badge .month {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--text-primary);
}

.evento-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.evento-card-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.evento-card-dj { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; font-weight: 500; }

.evento-prices { display: flex; gap: 12px; margin-bottom: 24px; margin-top: auto; }
.price-tag {
  flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 12px; text-align: center;
}
.price-tag .gender { font-size: 0.65rem; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 4px; letter-spacing: 0.1em; }
.price-tag .value { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--green-neon); }

.btn-lista-evento {
  width: 100%; background: var(--green-subtle); color: var(--green-neon); border: 1px solid var(--border-green);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 14px; border-radius: var(--radius-md);
  text-transform: uppercase; transition: var(--transition);
}
.evento-card:hover .btn-lista-evento { background: var(--green-neon); color: #02060f; }

/* ── About Section (Asymmetric) ── */
.about-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-1 {
  width: 70%; height: 80%; object-fit: cover;
  border-radius: var(--radius-lg); position: absolute; top: 0; left: 0;
}
.about-img-2 {
  width: 60%; height: 60%; object-fit: cover;
  border-radius: var(--radius-lg); position: absolute; bottom: 0; right: 0;
  border: 8px solid var(--bg-secondary);
}
.about-text h2 { font-size: 3rem; margin-bottom: 24px; }
.about-text p { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.8; }
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; }
}

/* ── Gallery Masonry ── */
.gallery-section { padding: 120px 0; }
.galeria-grid {
  column-count: 3;
  column-gap: 24px;
}
.galeria-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeria-item img {
  width: 100%; display: block; transition: var(--transition);
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item-overlay {
  position: absolute; inset: 0; background: rgba(116, 204, 244, 0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-overlay span { font-size: 2rem; color: #fff; font-family: 'Syne', sans-serif; }
@media (max-width: 768px) { .galeria-grid { column-count: 2; } }
@media (max-width: 480px) { .galeria-grid { column-count: 1; } }

/* ── Mega Footer ── */
.mega-footer {
  background: #01040a;
  padding: 80px 24px 40px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-links {
  display: flex; justify-content: center; gap: 32px; margin-bottom: 60px;
}
.footer-links a {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; color: var(--text-secondary); transition: var(--transition);
}
.footer-links a:hover { color: var(--green-neon); }
.footer-huge-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18vw;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 0.8;
  margin-bottom: 40px;
  user-select: none;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border-subtle); padding-top: 32px;
  max-width: 1300px; margin: 0 auto;
}
.footer-copyright { font-size: 0.85rem; color: var(--text-muted); }
.social-icons { display: flex; gap: 16px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary); transition: var(--transition);
}
.social-icon:hover { background: var(--green-neon); color: #000; border-color: var(--green-neon); }

/* ── Modals & Utilities ── */
.reveal { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Keep existing modal styles but adapt colors */
@import url('./modal.css'); /* We'll just define the modal directly below to save files */

/* Modal Overrides */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: 0.4s; padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg-card); border: 1px solid var(--border-green); border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 500px; transform: scale(0.95); transition: 0.4s;
  max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px; background: transparent; border: none;
  color: var(--text-secondary); font-size: 1.5rem; cursor: pointer; transition: 0.2s;
}
.modal-close:hover { color: #ff3c60; }
.modal-title { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.modal-title span { color: var(--green-neon); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); text-transform: uppercase;}
.form-input {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 14px 16px; color: #fff; font-family: inherit; font-size: 1rem;
}
.form-input:focus { border-color: var(--green-neon); outline: none; }
.gender-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gender-option input { display: none; }
.gender-label {
  display: flex; flex-direction: column; align-items: center; padding: 16px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
  cursor: pointer; transition: 0.2s;
}
.gender-option input:checked + .gender-label {
  border-color: var(--green-neon); background: var(--green-subtle);
}
.gender-name { font-family: 'Syne', sans-serif; font-weight: 700; margin-top: 8px; }
.gender-price { color: var(--green-neon); font-size: 0.85rem; font-weight: 600; }
.price-summary { display: flex; justify-content: space-between; align-items: center; background: var(--green-subtle); border: 1px solid var(--green-border); padding: 16px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.price-summary .amount { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--green-neon); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 3000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 2rem; background: none; border: none; cursor: pointer; }
