/* BREADCRUMB */
.breadcrumb-section {
  padding: 12rem 0 4rem;
  background: linear-gradient(180deg, #0a0008 0%, #050505 100%);
  text-align: center;
}

.breadcrumb-path {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.breadcrumb-path a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.breadcrumb-path span {
  color: var(--hot-pink);
}

.breadcrumb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

/* ABOUT CONTENT STYLES */
.about-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.story-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255, 46, 147, 0.2);
  will-change: transform, opacity;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 5rem;
}

.vm-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 46, 147, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--hot-pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vm-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.mission-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.mission-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.mission-item::before {
  content: '✨';
  font-size: 0.8rem;
  filter: drop-shadow(0 0 5px var(--hot-pink));
}

/* VIDEO PARALLAX SECTION */
.video-parallax-container {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 6rem 0;
  overflow: hidden;
  border: none;
}

.video-parallax-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 120%;
  object-fit: cover;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.2) 50%, rgba(5, 5, 5, 0.8) 100%);
  z-index: 2;
}

.video-content-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* STUDIO GALLERY */
.studio-section {
  padding: 8rem 0;
  background: #050505;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.studio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  border: 1px solid rgba(255, 46, 147, 0.3);
  background: #111;
}

.studio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERRIDES */
footer {
  text-align: left;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr !important;
  }
}

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; z-index: 10000; left: 0; top: 0;
  width: 100%; height: 100%; background: rgba(5, 0, 5, 0.9);
  backdrop-filter: blur(15px); align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}

.lightbox.active { display: flex; opacity: 1; }

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
  border: 1px solid rgba(255, 46, 147, 0.2);
}

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

.lightbox-close {
  position: absolute; top: 30px; right: 40px; font-size: 3rem; color: #fff; cursor: pointer; z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--hot-pink);
  border-color: var(--hot-pink);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
  }
}
