/* =========================================== */
/* JFSN PORTFOLIO - ABOUT PAGE BUNDLE */
/* Generated: 2025-12-03T16:50:04.194Z */
/* Combines 1 CSS files into one optimized bundle */
/* =========================================== */


/* =========================================== */
/* assets/css/about-page-styles.css */
/* =========================================== */

/* =========================================== */
/* ABOUT PAGE - COMPLETE STYLES */
/* Extracted from about.html inline styles */
/* =========================================== */
/* =========================================== */
/* EDITORIAL MAGAZINE TYPOGRAPHY */
/* (Shared styles in editorial-styles.css) */
/* =========================================== */

/* =========================================== */
/* SIMPLIFIED NAVBAR */
/* =========================================== */

.editorial-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.7); /* Light background */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 70px;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Google Material elevation */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  animation: navbarSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar slide-in animation on page load */
@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.editorial-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  height: 64px;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
}

[data-bs-theme="dark"] .editorial-navbar {
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .editorial-navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.editorial-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 100%;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-navbar.scrolled .editorial-navbar-content {
  padding: 0.875rem 2rem;
}

.editorial-navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  height: 100%;
}

.editorial-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a202c;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
}

/* Logo pulse animation on page load */
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.editorial-navbar-brand:hover {
  color: var(--bs-primary);
  transform: translateX(2px);
}

.editorial-navbar-brand img {
  filter: brightness(0);
  height: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoPulse 0.6s ease-out 0.3s;
}

.editorial-navbar-brand:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.editorial-navbar-brand:active {
  transform: translateX(2px) scale(0.98);
}

/* Ripple effect on brand click */
.editorial-navbar-brand::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-navbar-brand:active::after {
  width: 100px;
  height: 100px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

[data-bs-theme="dark"] .editorial-navbar-brand {
  color: #e2e8f0;
}

[data-bs-theme="dark"] .editorial-navbar-brand:hover {
  color: #ffffff;
}

[data-bs-theme="dark"] .editorial-navbar-brand img {
  filter: brightness(0) invert(1);
}

.editorial-navbar-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-navbar-toggle:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.05);
}

.editorial-navbar-toggle:active {
  transform: scale(0.95);
  background: rgba(99, 102, 241, 0.2);
}

/* Ripple effect on toggle */
.editorial-navbar-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-navbar-toggle:active::before {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.editorial-navbar-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  position: relative;
  z-index: 1;
}

.editorial-navbar-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a202c;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 2px;
}

.editorial-navbar-toggle:hover .editorial-navbar-toggle-icon span {
  background: #6366f1;
  box-shadow: 0 0 4px rgba(99, 102, 241, 0.4);
}

[data-bs-theme="dark"] .editorial-navbar-toggle-icon span {
  background: #e2e8f0;
}

[data-bs-theme="dark"] .editorial-navbar-toggle:hover .editorial-navbar-toggle-icon span {
  background: #ffffff;
}

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

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

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

[data-bs-theme="dark"] .editorial-navbar-toggle.active .editorial-navbar-toggle-icon span {
  background: #ffffff;
}

/* Overlay - Separate Div */
.editorial-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

.editorial-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Overlay content slide-in animation */
@keyframes overlayContentSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-nav-overlay-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.editorial-nav-overlay:not(.active) .editorial-nav-overlay-content {
  animation: none;
}

/* Desktop: Center content with max-width */
@media (min-width: 1025px) {
  .editorial-nav-overlay-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
  }
  
  .editorial-nav-overlay-menu {
    max-width: 800px;
    margin: 0 auto;
  }
}

.editorial-nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-10px);
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.editorial-nav-overlay.active .editorial-nav-overlay-header {
  opacity: 1;
  transform: translateY(0);
}

.editorial-nav-overlay-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
  position: relative;
}

.editorial-nav-overlay-brand:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.editorial-nav-overlay-brand:active {
  transform: translateX(4px) scale(0.98);
}

.editorial-nav-overlay-brand img {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-nav-overlay-brand:hover img {
  transform: scale(1.1) rotate(-5deg);
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.editorial-nav-overlay-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
}

.editorial-nav-overlay-close:hover {
  transform: rotate(90deg) scale(1.1);
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
}

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

/* Ripple effect on close button */
.editorial-nav-overlay-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-nav-overlay-close:active::before {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.editorial-nav-overlay-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.editorial-nav-overlay.active .editorial-nav-overlay-menu {
  opacity: 1;
  transform: translateY(0);
}

.editorial-nav-overlay-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 3.5rem; /* Fixed size for desktop */
  font-weight: 700;
  padding: 1.25rem 0; /* Increased from 1rem */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid transparent;
  line-height: 1.2;
  letter-spacing: -0.02em; /* Tighter letter spacing for large text */
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: navLinkSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Staggered delay for each nav link */
.editorial-nav-link:nth-child(1) { animation-delay: 0.4s; }
.editorial-nav-link:nth-child(2) { animation-delay: 0.5s; }
.editorial-nav-link:nth-child(3) { animation-delay: 0.6s; }
.editorial-nav-link:nth-child(4) { animation-delay: 0.7s; }
.editorial-nav-link:nth-child(5) { animation-delay: 0.8s; }

@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.editorial-nav-overlay:not(.active) .editorial-nav-link {
  animation: none;
  opacity: 0;
  transform: translateX(-30px);
}

/* Underline animation on hover */
.editorial-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.editorial-nav-link:hover {
  color: transparent;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: #6366f1;
  transform: translateX(24px);
  padding-left: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.editorial-nav-link.active {
  color: transparent !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-bottom-color: #6366f1 !important;
  border-bottom-width: 3px !important;
  transform: translateX(24px);
  padding-left: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

/* Pulse animation for active link */
@keyframes activeLinkPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.9)); }
}

.editorial-nav-link.active {
  animation: navLinkSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both, activeLinkPulse 2s ease-in-out infinite 1s;
}

/* Ensure active state is always visible, even when hovering other items */
.editorial-nav-link.active:hover {
  color: transparent !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-bottom-color: #6366f1 !important;
  border-bottom-width: 3px !important;
  filter: drop-shadow(0 0 16px rgba(99, 102, 241, 0.8));
}

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

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .editorial-nav-link {
    font-size: 3rem;
  }
  
  .editorial-nav-overlay-content {
    padding: 2rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .editorial-navbar {
    height: 60px;
    /* Safe area insets for iOS devices */
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    /* Optimize backdrop-filter performance on mobile */
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
  }
  
  .editorial-navbar-content {
    padding: 0.75rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }
  
  .editorial-navbar-brand {
    font-size: 1rem;
    min-height: 44px; /* WCAG AAA touch target */
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .editorial-navbar-brand img {
    height: 24px;
  }
  
  .editorial-navbar-toggle {
    min-width: 44px; /* WCAG AAA touch target */
    min-height: 44px;
    padding: 0.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .editorial-nav-overlay {
    /* Safe area insets for overlay */
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    /* Optimize backdrop-filter performance */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .editorial-nav-overlay-content {
    padding: 1.5rem;
    padding-top: max(1.5rem, calc(1.5rem + env(safe-area-inset-top, 0)));
    padding-bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom, 0)));
    padding-left: max(1.5rem, calc(1.5rem + env(safe-area-inset-left, 0)));
    padding-right: max(1.5rem, calc(1.5rem + env(safe-area-inset-right, 0)));
  }
  
  .editorial-nav-overlay-close {
    min-width: 44px; /* WCAG AAA touch target */
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.5rem, 8vw, 2.5rem); /* Only use vw on mobile */
    min-height: 60px; /* Larger touch target for links */
    padding: 1rem 0;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  
  body {
    padding-top: calc(70px + env(safe-area-inset-top, 0));
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .editorial-navbar {
    height: 56px;
  }
  
  .editorial-nav-overlay-content {
    padding: 1rem;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.25rem, 6vw, 2rem);
    min-height: 52px;
    padding: 0.75rem 0;
  }
  
  body {
    padding-top: calc(56px + env(safe-area-inset-top, 0));
  }
}

/* High DPI displays - optimize rendering */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .editorial-navbar-toggle-icon span {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

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

/* Page-specific styles */
/* Hero Section */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  margin-top: 0;
}

/* Ensure scrolling works */
html {
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  padding-top: 70px; /* Space for fixed navbar */
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../artworks/art1005.avif') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0.5rem 1rem;
}

.about-hero .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* =========================================== */
/* ABOUT PAGE DRONE ANIMATIONS - SPIRAL PATTERN */
/* =========================================== */
.about-drone-squadron {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: visible;
}

.about-drone-squadron.loaded {
  opacity: 1;
  visibility: visible;
}

.about-drone {
  position: absolute;
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.9));
  transition: transform 0.3s ease;
  pointer-events: all;
  will-change: transform;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .about-drone-squadron,
  .about-drone,
  .about-drone-hub,
  .about-drone-propeller,
  .about-drone-trail {
    animation: none !important;
    transition: none !important;
  }
  .about-drone-squadron {
    opacity: 0;
    visibility: hidden;
  }
}

.about-drone:hover {
  transform: scale(1.3) rotate(15deg) !important;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
}

.about-drone-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-drone-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.9),
              inset 0 0 10px rgba(255, 255, 255, 0.4);
  animation: aboutDronePulse 2s ease-in-out infinite;
}

@keyframes aboutDronePulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.9),
                inset 0 0 10px rgba(255, 255, 255, 0.4);
  }
  50% { 
    box-shadow: 0 0 40px rgba(139, 92, 246, 1),
                0 0 60px rgba(217, 70, 239, 0.7),
                inset 0 0 15px rgba(255, 255, 255, 0.6);
  }
}

.about-drone-arm {
  position: absolute;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.7);
}

.about-drone-arm-1 { top: 12px; left: 2px; transform: rotate(45deg); }
.about-drone-arm-2 { top: 12px; right: 2px; transform: rotate(-45deg); }
.about-drone-arm-3 { bottom: 12px; left: 2px; transform: rotate(-45deg); }
.about-drone-arm-4 { bottom: 12px; right: 2px; transform: rotate(45deg); }

.about-drone-propeller {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(139, 92, 246, 0) 100%);
  animation: aboutSpinPropeller 0.25s linear infinite;
}

.about-drone-propeller-1 { top: 4px; left: 4px; }
.about-drone-propeller-2 { top: 4px; right: 4px; }
.about-drone-propeller-3 { bottom: 4px; left: 4px; }
.about-drone-propeller-4 { bottom: 4px; right: 4px; }

@keyframes aboutSpinPropeller {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-drone-trail {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(139, 92, 246, 0) 0%,
    rgba(139, 92, 246, 0.9) 30%,
    rgba(217, 70, 239, 0.7) 50%,
    rgba(236, 72, 153, 0) 100%);
  opacity: 0.8;
  filter: blur(2px);
  transform-origin: left center;
  animation: aboutTrailFade 1.2s ease-in-out infinite;
}

@keyframes aboutTrailFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* Spiral Pattern - Drones spiral downward (opposite direction) */
@keyframes aboutSpiral1 {
  0% { 
    transform: translate(50vw, -10vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  25% { transform: translate(60vw, 25vh) rotate(90deg) scale(0.7); }
  50% { transform: translate(50vw, 50vh) rotate(180deg) scale(1); }
  75% { transform: translate(40vw, 75vh) rotate(270deg) scale(1.2); }
  90% { opacity: 1; }
  100% { 
    transform: translate(50vw, 100vh) rotate(360deg) scale(0.8); 
    opacity: 0;
  }
}

@keyframes aboutSpiral2 {
  0% { 
    transform: translate(30vw, -10vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  25% { transform: translate(45vw, 25vh) rotate(90deg) scale(0.7); }
  50% { transform: translate(50vw, 50vh) rotate(180deg) scale(1); }
  75% { transform: translate(55vw, 75vh) rotate(270deg) scale(1.2); }
  90% { opacity: 1; }
  100% { 
    transform: translate(50vw, 100vh) rotate(360deg) scale(0.8); 
    opacity: 0;
  }
}

@keyframes aboutSpiral3 {
  0% { 
    transform: translate(70vw, -10vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  25% { transform: translate(55vw, 25vh) rotate(90deg) scale(0.7); }
  50% { transform: translate(50vw, 50vh) rotate(180deg) scale(1); }
  75% { transform: translate(45vw, 75vh) rotate(270deg) scale(1.2); }
  90% { opacity: 1; }
  100% { 
    transform: translate(50vw, 100vh) rotate(360deg) scale(0.8); 
    opacity: 0;
  }
}

.about-drone-1 { 
  animation: none;
  animation-delay: 0s;
}
.about-drone-2 { 
  animation: none;
  animation-delay: 3s;
}
.about-drone-3 { 
  animation: none;
  animation-delay: 6s;
}

.about-drone-squadron.loaded .about-drone-1 { 
  animation: aboutSpiral1 22s linear infinite; 
}
.about-drone-squadron.loaded .about-drone-2 { 
  animation: aboutSpiral2 20s linear infinite; 
}
.about-drone-squadron.loaded .about-drone-3 { 
  animation: aboutSpiral3 24s linear infinite; 
}

.about-drone-1 .about-drone-hub { background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%); }
.about-drone-2 .about-drone-hub { background: linear-gradient(135deg, #d946ef 0%, #ec4899 100%); }
.about-drone-3 .about-drone-hub { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); }

@media (max-width: 768px) {
  .about-drone {
    width: 40px;
    height: 40px;
  }
  .about-drone-hub {
    width: 16px;
    height: 16px;
  }
  .about-drone-arm {
    width: 25px;
  }
}

/* Hero title stays black */
.about-hero-content h1 {
  color: #000 !important;
  font-size: clamp(2.5rem, 7vw, 5rem) !important;
  letter-spacing: -0.06em !important;
  line-height: 1.05 !important;
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

/* Hero subtitle/description is white */
.about-hero-content p,
.about-hero-content .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Bold Buttons */
.btn {
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.25);
}

/* Timeline Styles */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 3rem;
  border-left: 3px solid #6366f1;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6366f1;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #6366f1;
}

.timeline-item:last-child {
  border-left: none;
}

/* CRITICAL FIX: Override for buttons that should stay white on hover */
.btn-outline-primary.stay-white-on-hover:hover,
.btn-outline-primary.stay-white-on-hover:focus,
.btn-outline-primary.stay-white-on-hover:active,
.btn-outline-primary[data-stay-white]:hover {
  color: #0f172a !important; /* Dark text on white background */
  background: #ffffff !important; /* Keep white background */
}

.btn-outline-primary.stay-white-on-hover:hover::before,
.btn-outline-primary[data-stay-white]:hover::before {
  display: none !important; /* Hide gradient */
}

.btn-outline-primary.stay-white-on-hover:hover *,
.btn-outline-primary.stay-white-on-hover:focus *,
.btn-outline-primary.stay-white-on-hover:active *,
.btn-outline-primary[data-stay-white]:hover * {
  color: #0f172a !important; /* Dark text for all child elements */
}

/* Override outline-primary hover when button has white background */
.btn-outline-primary.bg-white:hover,
.bg-white.btn-outline-primary:hover,
button.bg-white.btn-outline-primary:hover,
.bg-white button.btn-outline-primary:hover {
  color: #0f172a !important; /* Dark text on white background */
  background: #ffffff !important; /* Keep white background */
}

.btn-outline-primary.bg-white:hover *,
.bg-white.btn-outline-primary:hover *,
button.bg-white.btn-outline-primary:hover *,
.bg-white button.btn-outline-primary:hover * {
  color: #0f172a !important; /* Dark text for all child elements */
}

/* Override outline-secondary hover when button has white background */
.btn-outline-secondary.bg-white:hover,
.bg-white.btn-outline-secondary:hover,
button.bg-white.btn-outline-secondary:hover,
.bg-white button.btn-outline-secondary:hover {
  color: #0f172a !important; /* Dark text on white background */
  background: #ffffff !important; /* Keep white background */
}

.btn-outline-secondary.bg-white:hover *,
.bg-white.btn-outline-secondary:hover *,
button.bg-white.btn-outline-secondary:hover *,
.bg-white button.btn-outline-secondary:hover * {
  color: #0f172a !important; /* Dark text for all child elements */
}

/* =========================================== */
/* EDITORIAL MAGAZINE TYPOGRAPHY */
/* (Shared styles in editorial-styles.css) */
/* =========================================== */

/* =========================================== */
/* SIMPLIFIED NAVBAR */
/* =========================================== */

.editorial-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.7); /* Light background */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 70px;
  pointer-events: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Google Material elevation */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  animation: navbarSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar slide-in animation on page load */
@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.editorial-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  height: 64px;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
}

[data-bs-theme="dark"] .editorial-navbar {
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .editorial-navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.editorial-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 100%;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-navbar.scrolled .editorial-navbar-content {
  padding: 0.875rem 2rem;
}

.editorial-navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  height: 100%;
}

.editorial-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a202c;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
}

/* Logo pulse animation on page load */
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.editorial-navbar-brand:hover {
  color: var(--bs-primary);
  transform: translateX(2px);
}

.editorial-navbar-brand img {
  filter: brightness(0);
  height: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoPulse 0.6s ease-out 0.3s;
}

.editorial-navbar-brand:hover img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.editorial-navbar-brand:active {
  transform: translateX(2px) scale(0.98);
}

/* Ripple effect on brand click */
.editorial-navbar-brand::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-navbar-brand:active::after {
  width: 100px;
  height: 100px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

[data-bs-theme="dark"] .editorial-navbar-brand {
  color: #e2e8f0;
}

[data-bs-theme="dark"] .editorial-navbar-brand:hover {
  color: #ffffff;
}

[data-bs-theme="dark"] .editorial-navbar-brand img {
  filter: brightness(0) invert(1);
}

.editorial-navbar-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-navbar-toggle:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.05);
}

.editorial-navbar-toggle:active {
  transform: scale(0.95);
  background: rgba(99, 102, 241, 0.2);
}

/* Ripple effect on toggle */
.editorial-navbar-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-navbar-toggle:active::before {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.editorial-navbar-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  position: relative;
  z-index: 1;
}

.editorial-navbar-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a202c;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  border-radius: 2px;
}

.editorial-navbar-toggle:hover .editorial-navbar-toggle-icon span {
  background: #6366f1;
  box-shadow: 0 0 4px rgba(99, 102, 241, 0.4);
}

[data-bs-theme="dark"] .editorial-navbar-toggle-icon span {
  background: #e2e8f0;
}

[data-bs-theme="dark"] .editorial-navbar-toggle:hover .editorial-navbar-toggle-icon span {
  background: #ffffff;
}

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

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

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

[data-bs-theme="dark"] .editorial-navbar-toggle.active .editorial-navbar-toggle-icon span {
  background: #ffffff;
}

/* Overlay - Separate Div */
.editorial-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

.editorial-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Overlay content slide-in animation */
@keyframes overlayContentSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-nav-overlay-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.editorial-nav-overlay:not(.active) .editorial-nav-overlay-content {
  animation: none;
}

/* Desktop: Center content with max-width */
@media (min-width: 1025px) {
  .editorial-nav-overlay-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
  }
  
  .editorial-nav-overlay-menu {
    max-width: 800px;
    margin: 0 auto;
  }
}

.editorial-nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-10px);
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.editorial-nav-overlay.active .editorial-nav-overlay-header {
  opacity: 1;
  transform: translateY(0);
}

.editorial-nav-overlay-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 8px;
  position: relative;
}

.editorial-nav-overlay-brand:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.editorial-nav-overlay-brand:active {
  transform: translateX(4px) scale(0.98);
}

.editorial-nav-overlay-brand img {
  filter: brightness(0) invert(1);
  height: 40px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editorial-nav-overlay-brand:hover img {
  transform: scale(1.1) rotate(-5deg);
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.editorial-nav-overlay-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
}

.editorial-nav-overlay-close:hover {
  transform: rotate(90deg) scale(1.1);
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
}

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

/* Ripple effect on close button */
.editorial-nav-overlay-close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.editorial-nav-overlay-close:active::before {
  width: 60px;
  height: 60px;
  opacity: 1;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.editorial-nav-overlay-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: overlayContentSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.editorial-nav-overlay.active .editorial-nav-overlay-menu {
  opacity: 1;
  transform: translateY(0);
}

.editorial-nav-overlay-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 3.5rem; /* Fixed size for desktop */
  font-weight: 700;
  padding: 1.25rem 0; /* Increased from 1rem */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 2px solid transparent;
  line-height: 1.2;
  letter-spacing: -0.02em; /* Tighter letter spacing for large text */
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  animation: navLinkSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Staggered delay for each nav link */
.editorial-nav-link:nth-child(1) { animation-delay: 0.4s; }
.editorial-nav-link:nth-child(2) { animation-delay: 0.5s; }
.editorial-nav-link:nth-child(3) { animation-delay: 0.6s; }
.editorial-nav-link:nth-child(4) { animation-delay: 0.7s; }
.editorial-nav-link:nth-child(5) { animation-delay: 0.8s; }

@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.editorial-nav-overlay:not(.active) .editorial-nav-link {
  animation: none;
  opacity: 0;
  transform: translateX(-30px);
}

/* Underline animation on hover */
.editorial-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

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

.editorial-nav-link:hover {
  color: transparent;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: #6366f1;
  transform: translateX(24px);
  padding-left: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
}

.editorial-nav-link.active {
  color: transparent !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-bottom-color: #6366f1 !important;
  border-bottom-width: 3px !important;
  transform: translateX(24px);
  padding-left: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
}

/* Pulse animation for active link */
@keyframes activeLinkPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6)); }
  50% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.9)); }
}

.editorial-nav-link.active {
  animation: navLinkSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both, activeLinkPulse 2s ease-in-out infinite 1s;
}

/* Ensure active state is always visible, even when hovering other items */
.editorial-nav-link.active:hover {
  color: transparent !important;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  border-bottom-color: #6366f1 !important;
  border-bottom-width: 3px !important;
  filter: drop-shadow(0 0 16px rgba(99, 102, 241, 0.8));
}

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

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .editorial-nav-link {
    font-size: 3rem;
  }
  
  .editorial-nav-overlay-content {
    padding: 2rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .editorial-navbar {
    height: 60px;
    /* Safe area insets for iOS devices */
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    /* Optimize backdrop-filter performance on mobile */
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
  }
  
  .editorial-navbar-content {
    padding: 0.75rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }
  
  .editorial-navbar-brand {
    font-size: 1rem;
    min-height: 44px; /* WCAG AAA touch target */
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .editorial-navbar-brand img {
    height: 24px;
  }
  
  .editorial-navbar-toggle {
    min-width: 44px; /* WCAG AAA touch target */
    min-height: 44px;
    padding: 0.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  
  .editorial-nav-overlay {
    /* Safe area insets for overlay */
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    /* Optimize backdrop-filter performance */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .editorial-nav-overlay-content {
    padding: 1.5rem;
    padding-top: max(1.5rem, calc(1.5rem + env(safe-area-inset-top, 0)));
    padding-bottom: max(1.5rem, calc(1.5rem + env(safe-area-inset-bottom, 0)));
    padding-left: max(1.5rem, calc(1.5rem + env(safe-area-inset-left, 0)));
    padding-right: max(1.5rem, calc(1.5rem + env(safe-area-inset-right, 0)));
  }
  
  .editorial-nav-overlay-close {
    min-width: 44px; /* WCAG AAA touch target */
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.5rem, 8vw, 2.5rem); /* Only use vw on mobile */
    min-height: 60px; /* Larger touch target for links */
    padding: 1rem 0;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }
  
  body {
    padding-top: calc(70px + env(safe-area-inset-top, 0));
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .editorial-navbar {
    height: 56px;
  }
  
  .editorial-nav-overlay-content {
    padding: 1rem;
  }
  
  .editorial-nav-link {
    font-size: clamp(1.25rem, 6vw, 2rem);
    min-height: 52px;
    padding: 0.75rem 0;
  }
  
  body {
    padding-top: calc(56px + env(safe-area-inset-top, 0));
  }
}

/* High DPI displays - optimize rendering */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .editorial-navbar-toggle-icon span {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

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

/* Page-specific styles */
/* Hero Section */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  margin-top: 0;
}

/* Ensure scrolling works */
html {
  overflow-y: scroll;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  padding-top: 70px; /* Space for fixed navbar */
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../artworks/art1005.avif') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0.5rem 1rem;
}

.about-hero .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* =========================================== */
/* ABOUT PAGE DRONE ANIMATIONS - SPIRAL PATTERN */
/* =========================================== */
.about-drone-squadron {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: visible;
}

.about-drone-squadron.loaded {
  opacity: 1;
  visibility: visible;
}

.about-drone {
  position: absolute;
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.9));
  transition: transform 0.3s ease;
  pointer-events: all;
  will-change: transform;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .about-drone-squadron,
  .about-drone,
  .about-drone-hub,
  .about-drone-propeller,
  .about-drone-trail {
    animation: none !important;
    transition: none !important;
  }
  .about-drone-squadron {
    opacity: 0;
    visibility: hidden;
  }
}

.about-drone:hover {
  transform: scale(1.3) rotate(15deg) !important;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
}

.about-drone-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-drone-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.9),
              inset 0 0 10px rgba(255, 255, 255, 0.4);
  animation: aboutDronePulse 2s ease-in-out infinite;
}

@keyframes aboutDronePulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.9),
                inset 0 0 10px rgba(255, 255, 255, 0.4);
  }
  50% { 
    box-shadow: 0 0 40px rgba(139, 92, 246, 1),
                0 0 60px rgba(217, 70, 239, 0.7),
                inset 0 0 15px rgba(255, 255, 255, 0.6);
  }
}

.about-drone-arm {
  position: absolute;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.7);
}

.about-drone-arm-1 { top: 12px; left: 2px; transform: rotate(45deg); }
.about-drone-arm-2 { top: 12px; right: 2px; transform: rotate(-45deg); }
.about-drone-arm-3 { bottom: 12px; left: 2px; transform: rotate(-45deg); }
.about-drone-arm-4 { bottom: 12px; right: 2px; transform: rotate(45deg); }

.about-drone-propeller {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(139, 92, 246, 0) 100%);
  animation: aboutSpinPropeller 0.25s linear infinite;
}

.about-drone-propeller-1 { top: 4px; left: 4px; }
.about-drone-propeller-2 { top: 4px; right: 4px; }
.about-drone-propeller-3 { bottom: 4px; left: 4px; }
.about-drone-propeller-4 { bottom: 4px; right: 4px; }

@keyframes aboutSpinPropeller {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-drone-trail {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(139, 92, 246, 0) 0%,
    rgba(139, 92, 246, 0.9) 30%,
    rgba(217, 70, 239, 0.7) 50%,
    rgba(236, 72, 153, 0) 100%);
  opacity: 0.8;
  filter: blur(2px);
  transform-origin: left center;
  animation: aboutTrailFade 1.2s ease-in-out infinite;
}

@keyframes aboutTrailFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* Spiral Pattern - Drones spiral downward (opposite direction) */
@keyframes aboutSpiral1 {
  0% { 
    transform: translate(50vw, -10vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  25% { transform: translate(60vw, 25vh) rotate(90deg) scale(0.7); }
  50% { transform: translate(50vw, 50vh) rotate(180deg) scale(1); }
  75% { transform: translate(40vw, 75vh) rotate(270deg) scale(1.2); }
  90% { opacity: 1; }
  100% { 
    transform: translate(50vw, 100vh) rotate(360deg) scale(0.8); 
    opacity: 0;
  }
}

@keyframes aboutSpiral2 {
  0% { 
    transform: translate(30vw, -10vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  25% { transform: translate(45vw, 25vh) rotate(90deg) scale(0.7); }
  50% { transform: translate(50vw, 50vh) rotate(180deg) scale(1); }
  75% { transform: translate(55vw, 75vh) rotate(270deg) scale(1.2); }
  90% { opacity: 1; }
  100% { 
    transform: translate(50vw, 100vh) rotate(360deg) scale(0.8); 
    opacity: 0;
  }
}

@keyframes aboutSpiral3 {
  0% { 
    transform: translate(70vw, -10vh) rotate(0deg) scale(0.5); 
    opacity: 0; 
  }
  10% { opacity: 1; }
  25% { transform: translate(55vw, 25vh) rotate(90deg) scale(0.7); }
  50% { transform: translate(50vw, 50vh) rotate(180deg) scale(1); }
  75% { transform: translate(45vw, 75vh) rotate(270deg) scale(1.2); }
  90% { opacity: 1; }
  100% { 
    transform: translate(50vw, 100vh) rotate(360deg) scale(0.8); 
    opacity: 0;
  }
}

.about-drone-1 { 
  animation: none;
  animation-delay: 0s;
}
.about-drone-2 { 
  animation: none;
  animation-delay: 3s;
}
.about-drone-3 { 
  animation: none;
  animation-delay: 6s;
}

.about-drone-squadron.loaded .about-drone-1 { 
  animation: aboutSpiral1 22s linear infinite; 
}
.about-drone-squadron.loaded .about-drone-2 { 
  animation: aboutSpiral2 20s linear infinite; 
}
.about-drone-squadron.loaded .about-drone-3 { 
  animation: aboutSpiral3 24s linear infinite; 
}

.about-drone-1 .about-drone-hub { background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%); }
.about-drone-2 .about-drone-hub { background: linear-gradient(135deg, #d946ef 0%, #ec4899 100%); }
.about-drone-3 .about-drone-hub { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); }

@media (max-width: 768px) {
  .about-drone {
    width: 40px;
    height: 40px;
  }
  .about-drone-hub {
    width: 16px;
    height: 16px;
  }
  .about-drone-arm {
    width: 25px;
  }
}

/* Hero title stays black */
.about-hero-content h1 {
  color: #000 !important;
  font-size: clamp(2.5rem, 7vw, 5rem) !important;
  letter-spacing: -0.06em !important;
  line-height: 1.05 !important;
  margin-bottom: 1rem !important;
  padding: 0 !important;
}

/* Hero subtitle/description is white */
.about-hero-content p,
.about-hero-content .lead {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Bold Buttons */
.btn {
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.25);
}

/* Timeline Styles */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 3rem;
  border-left: 3px solid #6366f1;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6366f1;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #6366f1;
}

.timeline-item:last-child {
  border-left: none;
}

