/* Shared site styles for Encore Creative Events */
:root {
  color-scheme: dark;
  color: #0F172A;
  background-color: #F8FAFC;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background-color: #F8FAFC;
  color: #0F172A;
}

html {
  scroll-behavior: smooth;
}

#site-header {
  background-color: rgba(15, 23, 42, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#site-header.scrolled {
  background-color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background-color: #D4AF37;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0F172A;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.12);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.section-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.92) 60%, rgba(15, 23, 42, 0.95) 100%);
}

.video-placeholder,
.map-placeholder {
  min-height: 280px;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(10, 25, 40, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.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(15, 23, 42, 0.95);
  color: #F8FAFC;
}

.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;
}
