/* ==========================================================================
   YARA MUR — EDITORIAL COMPONENTS
   Navigation, Hero Showcase, Lightbox, Comp Card & Video Player
   ========================================================================== */

/* --- 1. HEADER & NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 2rem 0;
  transition: padding 0.4s var(--ease-editorial), background-color 0.4s var(--ease-editorial), border-color 0.4s var(--ease-editorial);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 1.25rem 0;
  background-color: var(--bg-overlay);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-crimson);
  border-radius: 50%;
  display: inline-block;
}

.location-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.pulse-icon {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--accent-crimson);
  transition: width 0.3s var(--ease-editorial);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- 2. HERO SECTION & SHOWCASE --- */
.hero-section {
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
  filter: grayscale(80%) contrast(120%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.hero-text-content {
  z-index: 2;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title .crimson {
  color: var(--accent-crimson-bright);
  font-style: italic;
  font-weight: 400;
}

.hero-subhead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Hero Showcase Card Frame */
.hero-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 0.67;
  max-height: 780px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-editorial), transform 1.2s var(--ease-editorial);
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(7,7,7,0.95), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-slide-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

/* Badge Component */
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
}

.badge-crimson {
  background-color: rgba(158, 27, 27, 0.25);
  color: #ff6b6b;
  border: 1px solid rgba(254, 90, 90, 0.3);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-nav-btn {
  width: 44px;
  height: 44px;
  background-color: rgba(7, 7, 7, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-nav-btn:hover {
  background-color: var(--accent-crimson);
  border-color: var(--accent-crimson);
}

/* --- 3. BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background-color: var(--text-primary);
  color: var(--text-inverse);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid var(--text-primary);
  transition: background-color 0.4s var(--ease-editorial), color 0.4s var(--ease-editorial), border-color 0.4s var(--ease-editorial);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--accent-crimson);
  color: var(--text-primary);
  border-color: var(--accent-crimson);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background-color: transparent;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  transition: border-color 0.4s var(--ease-editorial), background-color 0.4s var(--ease-editorial);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(245, 243, 239, 0.05);
}

/* --- 4. EDITORIAL GALLERY & CARDS --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--text-primary);
}

.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--accent-crimson);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.gallery-item {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease-editorial), border-color 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
}

.gallery-item-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 0.75;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 1.2s var(--ease-editorial);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.9), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-editorial);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.gallery-item-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

/* --- 5. CINEMATIC VIDEO REEL SECTION --- */
.motion-reel-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.main-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.main-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-controls {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.video-control-btn {
  background-color: rgba(7, 7, 7, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.video-control-btn:hover {
  background-color: var(--accent-crimson);
  border-color: var(--accent-crimson);
}

.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.playlist-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.playlist-item:hover,
.playlist-item.active {
  background-color: var(--bg-card-hover);
  border-color: var(--accent-crimson);
}

.playlist-thumb {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.playlist-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.playlist-category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* --- 6. COMP CARD & SPECS --- */
.compcard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table td {
  padding: 1rem 0;
  font-size: 1rem;
}

.specs-table td:first-child {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.specs-table td:last-child {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  text-align: right;
  color: var(--text-primary);
}

.digitals-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.digital-card {
  aspect-ratio: 0.8;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
}

.digital-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s var(--ease-editorial);
}

.digital-card:hover img {
  transform: scale(1.08);
}

/* --- 7. LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-editorial), visibility 0.4s var(--ease-editorial);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border: 1px solid var(--border-color);
}

.lightbox-caption {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-crimson-bright);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.lightbox-arrow {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  background-color: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lightbox-arrow:hover {
  background-color: var(--accent-crimson);
}
