/*
Theme Name: Mirror Box
Theme URI: https://themirrorboxdxb.com
Author: Mirror Box
Description: Premium one-page WordPress theme for the Mirror Box luxury event installation.
Version: 1.1.0
Text Domain: mirror-box
*/

:root {
  --black: #0b0b0b;
  --charcoal: #141414;
  --gold: #d4af37;
  --gold-soft: #efc765;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 7%, rgba(212, 175, 55, 0.12), transparent 30rem),
    radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.06), transparent 22rem),
    var(--black);
  color: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 900px);
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 11, 11, 0.84);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(100% - 40px, 1280px);
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand span,
.site-footer h2 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.btn-gold,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-gold {
  color: #050505;
  background: linear-gradient(135deg, #f4d37c 0%, #d4af37 42%, #a16f16 100%);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.24);
}

.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.7);
  color: var(--gold);
}

.btn-gold:hover,
.btn-outline:hover,
.contact-link:hover {
  transform: translateY(-4px);
}

.hero {
  min-height: 100vh;
  padding-top: 112px;
}

.hero-grid {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 650;
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.lead,
.copy-block p,
.contact-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.mini-feature {
  text-align: center;
}

.line-icon,
.spark-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
}

.mini-feature p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.hero-media,
.image-card {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 28px;
  background: #151515;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.22),
    0 26px 80px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(212, 175, 55, 0.12);
}

.hero-media {
  position: relative;
  height: min(72vh, 690px);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(56px);
}

.hero-media img,
.image-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: 75% 1%;
}

.split-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.image-card {
  height: 520px;
}

.image-card img {
  object-position: 8% 35%;
}

.copy-block {
  max-width: 620px;
}

.section-heading {
  margin-bottom: 46px;
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  min-width: 410px;
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: var(--charcoal);
  scroll-snap-align: center;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent 48%);
}

.tint-gold::before,
.tint-blue::before,
.tint-pink::before,
.tint-red::before,
.tint-green::before,
.tint-purple::before,
.tint-iridescent::before,
.tint-silver::before,
.tint-white::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
}

.tint-gold::before { background: linear-gradient(to top, rgba(212, 175, 55, 0.45), transparent); }
.tint-blue::before { background: linear-gradient(to top, rgba(37, 99, 235, 0.55), transparent); }
.tint-pink::before { background: linear-gradient(to top, rgba(236, 72, 153, 0.5), transparent); }
.tint-red::before { background: linear-gradient(to top, rgba(185, 28, 28, 0.55), transparent); }
.tint-green::before { background: linear-gradient(to top, rgba(5, 150, 105, 0.45), transparent); }
.tint-purple::before { background: linear-gradient(to top, rgba(109, 40, 217, 0.5), transparent); }
.tint-iridescent::before { background: linear-gradient(to top, rgba(34, 211, 238, 0.28), rgba(244, 114, 182, 0.28), transparent); }
.tint-silver::before, .tint-white::before { background: linear-gradient(to top, rgba(255, 255, 255, 0.24), transparent); }

.card-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 26px;
}

.card-caption p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.spark-icon {
  margin: 0 0 32px;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.details-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.spec {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.spec p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spec strong {
  font-size: 21px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.contact-card h3 {
  margin-top: 12px;
  font-size: 34px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.24);
  font-weight: 900;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-link.primary {
  color: #050505;
  background: linear-gradient(135deg, #f4d37c 0%, #d4af37 42%, #a16f16 100%);
}

.contact-link span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.contact-link.primary span {
  color: rgba(0, 0, 0, 0.72);
}

.faq-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

details + details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

summary {
  cursor: pointer;
  padding: 22px;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 24px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 44px;
}

.site-footer h3 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer .btn-outline {
  display: inline-flex;
  color: var(--gold);
}

.copyright {
  width: min(100% - 40px, 1280px);
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.reveal {
  animation: mirrorFade 0.8s ease both;
}

@keyframes mirrorFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .two-col,
  .details-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .container,
  .nav-wrap,
  .narrow {
    width: min(100% - 28px, 1280px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .nav-wrap {
    height: 76px;
  }

  .brand span {
    font-size: 18px;
  }

  .nav-cta {
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-media {
    height: 430px;
  }

  .feature-row,
  .card-grid,
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card {
    min-width: 82vw;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    gap: 28px;
  }
}
