/* =========================================== */
/* EDITORIAL MAGAZINE STYLES - SHARED */
/* Use across all pages for consistency */
/* =========================================== */

/* Editorial Font Stack */
:root {
  --font-headline: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Inter', sans-serif;
}

/* Massive Editorial Headlines */
h1, .h1 {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2, .h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h3, .h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Body Text */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #1a1a1a;
}

[data-bs-theme="dark"] body {
  color: #e5e7eb;
}

/* Lead Text */
.lead {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
}

[data-bs-theme="dark"] .lead {
  color: #cbd5e0;
}

/* Editorial Pull Quotes */
.pull-quote {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #6366f1;
  font-style: italic;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 2px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  text-align: center;
}

[data-bs-theme="dark"] .pull-quote {
  color: #818cf8;
  border-color: #374151;
}

/* Drop Cap */
.drop-cap {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  padding-right: 0.5rem;
  padding-top: 0.1rem;
  color: #6366f1;
}

[data-bs-theme="dark"] .drop-cap {
  color: #818cf8;
}

/* =========================================== */
/* EDITORIAL NAVBAR - MINIMAL HAMBURGER */
/* =========================================== */

.editorial-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 70px;
}

.editorial-navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.editorial-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 100%;
  max-width: 100%;
}

.editorial-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: opacity 0.3s ease;
  z-index: 1001;
  position: relative;
}

.editorial-navbar-brand:hover {
  opacity: 0.8;
  color: white;
}

.editorial-navbar-brand img {
  filter: brightness(0) invert(1);
  height: 28px;
  width: auto;
  display: block;
}

.editorial-navbar-brand span {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.editorial-navbar-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-navbar-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.editorial-navbar-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.editorial-navbar-toggle.active .editorial-navbar-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.editorial-navbar-toggle.active .editorial-navbar-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.editorial-navbar-toggle.active .editorial-navbar-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Full-Screen Navigation Overlay */
.editorial-nav-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  pointer-events: none;
  display: block !important;
}

.editorial-nav-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: block !important;
}

.editorial-nav-overlay-content {
  min-height: 100vh;
  display: flex !important;
  flex-direction: column;
  padding: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.editorial-nav-overlay-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.editorial-nav-overlay-brand {
  display: flex !important;
  align-items: center;
  gap: 1rem;
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  z-index: 10;
}

.editorial-nav-overlay-brand img {
  filter: brightness(0) invert(1);
  height: 40px;
}

.editorial-nav-overlay-close {
  background: none;
  border: none;
  color: white !important;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.editorial-nav-overlay-close:hover {
  transform: rotate(90deg);
}

.editorial-nav-overlay-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.editorial-nav-link {
  display: block !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  position: relative;
  z-index: 3;
}

.editorial-nav-link:hover,
.editorial-nav-link.active {
  color: white;
  border-bottom-color: #6366f1;
  transform: translateX(20px);
}

.editorial-nav-overlay-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ensure hero content doesn't overlap navbar */
.editorial-hero-section {
  padding-top: 70px;
}

/* Full-Bleed Images */
.full-bleed-image-container {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  max-height: 80vh;
}

.full-bleed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.full-bleed-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: white;
}

.full-bleed-caption {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
  .editorial-navbar {
    height: 60px;
  }
  
  .editorial-navbar-content {
    padding: 0.75rem 1rem;
  }
  
  .editorial-navbar-brand img {
    height: 24px;
  }
  
  .editorial-navbar-brand span {
    font-size: 1rem;
  }
  
  .editorial-nav-overlay-content {
    padding: 1.5rem;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }
  
  .editorial-hero-section {
    padding-top: 60px;
  }
  
  .full-bleed-image-container {
    max-height: 60vh;
  }
  
  .full-bleed-overlay {
    padding: 1.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .editorial-nav-link,
  .editorial-navbar-toggle-icon span,
  .editorial-nav-overlay-close {
    transition: none;
  }
}

