/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-hover: #D4B85C;
  --gold-dark: #A8893D;
  --black: #000000;
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-section: #0d0d0d;
  --white: #ffffff;
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --light-gray: #cccccc;
  --mid-gray: #999999;
  --dark-text: #1a1a1a;
  --font-display: 'Cormorant', Georgia, serif;
  --font-heading: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Figtree', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: pageIn 0.5s ease both;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== PAGE TRANSITIONS ========== */
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Smooth link transitions between pages */
a[href$=".html"] {
  transition: opacity 0.2s ease;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ========== PAGE HERO (sub-pages) ========== */
.page-hero {
  position: relative;
  height: 75vh;
  min-height: 540px;
  max-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
}

/* ========== HOMEPAGE HERO ========== */
.hero {
  position: relative;
  height: 75vh;
  min-height: 540px;
  max-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.4);
}

.hero .hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--gold);
  margin-top: 14px;
  text-shadow: 1px 2px 10px rgba(0,0,0,0.3);
}

/* ========== SUBHEADING (Cormorant italic eyebrow) ========== */
.subheading {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.section--cream .subheading,
.section--white .subheading {
  color: var(--gold-dark);
}

/* ========== GOLD DIVIDER ========== */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
  border: none;
}

.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 40px 40px;
}

.section--black { background: var(--black); }
.section--dark { background: var(--dark-section); }
.section--cream { background: var(--cream); color: var(--dark-text); }
.section--white { background: var(--warm-white); color: var(--dark-text); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-wrap: balance;
}

/* Avoid widows/orphans on display headings */
.venues-inner h3,
.cinema-intro h3,
.pb-intro h2,
.hero h1,
.page-hero h1,
.drone-inner h2 {
  text-wrap: balance;
}

.section--cream .section-title,
.section--white .section-title {
  color: var(--dark-text);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ========== TAGLINE BANNER ========== */
.tagline {
  background: var(--cream);
  padding: 30px 40px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}

.tagline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 500;
  color: var(--dark-text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ========== SERVICE CARDS (homepage) ========== */
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-card { display: flex; flex-direction: column; }

.service-card .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/10;
}

.service-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .image-wrapper img { transform: scale(1.05); }

.service-card .btn {
  align-self: flex-start;
}

.service-card .subheading {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--gold);
  margin: 4px 0 8px;
}

.section--cream .service-card h3,
.section--white .service-card h3 {
  color: var(--dark-text);
}

.service-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.section--cream .service-card p,
.section--white .service-card p {
  color: #555;
}

/* ========== PACKAGE CARDS ========== */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.package-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.package-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.package-card-body {
  padding: 24px;
  text-align: center;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
}

.package-card .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.package-card ul { padding: 0; text-align: left; }

.package-card li {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-gray);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.package-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ========== ENHANCEMENT CARDS ========== */
.enhancement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.enhancement-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.enhancement-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.enhancement-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
}

.enhancement-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ========== IMAGE GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* ========== CONTACT SECTION ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form select option { background: var(--dark-card); color: var(--white); }

/* ========== CONTENT BLOCKS ========== */
.text-content p {
  font-size: 15px;
  font-weight: 400;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.text-content p:last-child { margin-bottom: 0; }

.section--cream .text-content p,
.section--white .text-content p {
  color: #555;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.section--cream .btn:hover,
.section--white .btn:hover {
  background: transparent;
  color: var(--gold-dark);
}

.btn-center { text-align: center; margin-top: 30px; }

/* ========== AWARDS ========== */
.awards {
  background: var(--black);
  padding: 36px 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.awards-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.awards-inner img {
  height: 75px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.awards-inner img:hover { opacity: 1; }
.awards-inner img.logo-badge { height: 55px; }

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  padding: 30px 40px 20px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-info p {
  font-size: 13px;
  font-weight: 400;
  color: var(--light-gray);
  line-height: 1.8;
}

.footer-info a {
  font-size: 13px;
  font-weight: 400;
  color: var(--light-gray);
}

.footer-info a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--light-gray);
  display: block;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.social-links svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
}


/* ========== LIGHTBOX MODAL ========== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grids */
.fade-in-stagger > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.fade-in-stagger > *:nth-child(3) { transition-delay: 0.24s; }
.fade-in-stagger > *:nth-child(4) { transition-delay: 0.36s; }
.fade-in-stagger > *:nth-child(5) { transition-delay: 0.48s; }
.fade-in-stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* Hero parallax-lite — no transition, handled by rAF in JS */

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .header-inner { padding: 10px 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; letter-spacing: 1.5px; }
  .services-grid { gap: 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 36px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    padding: 20px;
    gap: 16px;
    border-bottom: 2px solid var(--gold);
  }

  .nav-links.active { display: flex; }

  .hero { height: 62vh; min-height: 440px; max-height: 600px; }
  .hero-content { padding: 0 20px; }
  .hero h1 { font-size: 2.2rem; letter-spacing: 3px; line-height: 1.3; }
  .hero .hero-subtitle { font-size: 1rem; }
  .page-hero { height: 62vh; min-height: 440px; max-height: 600px; }
  .page-hero-content { padding: 0 20px; }
  .page-hero h1 { font-size: 1.8rem; letter-spacing: 3px; line-height: 1.3; }
  .services-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .enhancement-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .awards-inner { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 30px 20px; }
  .tagline { padding: 36px 20px; }
}
