/* Shared site styles for Zivstage - Professional Entertainment Brand */
:root {
  color-scheme: dark;
  color: #1F2937;
  background-color: #F0F4F8;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background-color: #F0F4F8;
  color: #1F2937;
}

html {
  scroll-behavior: smooth;
}

#site-header {
  background-color: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 140, 0, 0.2);
}

#site-header.scrolled {
  background-color: rgba(10, 14, 39, 0.95);
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
}

.heading-font {
  font-family: "Playfair Display", serif;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 100%);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 2px solid #FF8C00;
  background-color: transparent;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FF8C00;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 140, 0, 0.1);
  transform: translateY(-2px);
}

.section-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(255, 140, 0, 0.1);
  box-shadow: 0 12px 48px rgba(10, 14, 39, 0.1);
  transition: all 0.3s ease;
}

.section-card:hover {
  border-color: rgba(255, 140, 0, 0.3);
  box-shadow: 0 16px 64px rgba(255, 140, 0, 0.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.7) 0%, rgba(10, 14, 39, 0.85) 60%, rgba(10, 14, 39, 0.95) 100%);
}

.video-placeholder,
.map-placeholder {
  min-height: 280px;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(139, 92, 246, 0.15));
  border: 2px solid rgba(255, 140, 0, 0.2);
  box-shadow: 0 16px 48px rgba(255, 140, 0, 0.1);
}

.video-placeholder::before,
.map-placeholder::before {
  content: "Insert YouTube Embed Here";
  display: block;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-placeholder::after,
.map-placeholder::after {
  content: "Video area reserved for embed";
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-card {
  background: rgba(10, 14, 39, 0.95);
  color: #F0F4F8;
  border: 1px solid rgba(255, 140, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(255, 140, 0, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

#site-header.scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
}

.mobile-menu {
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu {
    display: block;
  }
}

.hero-figure {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 36px 120px rgba(15, 23, 42, 0.18);
}

.card-glow {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.feature-grid img,
.gallery-grid img,
.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer a:hover,
.btn-outline:hover,
.btn-secondary:hover,
.btn-primary:hover {
  opacity: 0.92;
}
