/* ===========================
   CELEBRATO EVENTS — home.css
   =========================== */

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Slide indicator dots */
.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(245,240,232,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}
.hero-dot.active {
  width: 28px;
  background: var(--gold);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.45) 0%, rgba(8,8,8,0.35) 50%, rgba(8,8,8,0.45) 100%);
  z-index: 1;
}
.hero-bokeh-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 65%);
  top: -200px; right: -100px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.hero-bokeh-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(183,110,121,0.1) 0%, transparent 65%);
  bottom: -150px; left: -100px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
  opacity: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-title .line1 { display: block; }
.hero-title .line2 {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}
.scroll-arrow {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}
.scroll-arrow span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.scroll-arrow::after {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg) translateY(-4px);
}

/* MARQUEE TICKER */
.marquee-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2.5rem;
  white-space: nowrap;
}

/* ABOUT PREVIEW */
.about-preview {
  padding: var(--space-xl) 0;
}
.about-preview .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; height: 550px;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text p { color: var(--text-secondary); line-height: 1.8; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 0.5rem 0;
}
.stat-item {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* SERVICES PREVIEW */
.services-preview {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}
.services-preview .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.service-card {
  background: rgba(201,168,76,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(201,168,76,0.12);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-link:hover { gap: 0.75rem; }
.services-cta { text-align: center; margin-top: var(--space-md); }

/* EVENT TYPES SHOWCASE */
.events-showcase {
  padding: var(--space-xl) 0;
}
.events-showcase .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin: var(--space-md) 0;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.event-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.event-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-item:hover img { transform: scale(1.06); }
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.event-item:hover .event-overlay { opacity: 1; }
.event-type-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: rgba(8,8,8,0.5);
}

/* VIDEO TEASER */
.video-teaser {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  position: relative;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}
.video-teaser .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.video-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: block;
  transition: all 0.4s;
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.4s;
}
.video-card:hover .play-overlay { background: rgba(8,8,8,0.3); }
.play-btn-circle {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #080808;
  padding-left: 4px;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
}
.video-card:hover .play-btn-circle {
  transform: scale(1.15);
  animation: pulse 1.5s ease-in-out infinite;
}
.video-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}
.video-date {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.video-card:hover {
  box-shadow: 0 8px 40px rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
}
.video-teaser-cta { text-align: center; margin-top: var(--space-md); }

/* WHY CHOOSE US */
.why-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold-dim) 100%);
}
.why-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.why-section .section-title { color: #080808; }
.why-section .section-label { color: rgba(8,8,8,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.why-card {
  background: rgba(8,8,8,0.15);
  border: 1px solid rgba(8,8,8,0.15);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(8,8,8,0.25);
  transform: translateY(-4px);
}
.why-icon { font-size: 3rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #080808;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.why-card p { font-size: 0.88rem; color: rgba(8,8,8,0.7); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials {
  padding: var(--space-xl) 0;
  overflow: hidden;
}
.testimonials .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ticker-wrap {
  overflow: hidden;
  margin-top: var(--space-md);
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}
.ticker-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar-circle {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  color: #080808;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.reviewer-event {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* GALLERY PREVIEW */
.gallery-preview {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
}
.gallery-preview .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: var(--space-md);
}
.gallery-masonry-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-masonry-item.tall { grid-row: span 2; }
.gallery-masonry-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { opacity: 1; }
.zoom-icon {
  font-size: 2rem;
  color: var(--gold);
}
.gallery-cta { text-align: center; margin-top: var(--space-md); }

/* CTA BANNER */
.cta-banner {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #0E0E0E 0%, #1a1200 50%, #0E0E0E 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Responsive Home */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-preview .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-img-wrap img { height: 350px; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
}
