/* ============================================
   Photography Page Styles
   ============================================ */

.photography-hero {
  padding: 80px 0 40px;
}

.photography-hero__title {
  margin-bottom: 16px;
}

.photography-hero__description {
  max-width: 1000px;
}

/* Gallery Grid */
.gallery {
  padding: 40px 0 80px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  grid-auto-rows: 355px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--short {
  grid-row: span 1;
}

.gallery__item--full {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--color-white);
  font-size: 14px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.gallery__item:hover .gallery__item-caption {
  opacity: 1;
}

/* ============================================
   About Page Styles
   ============================================ */

.about-hero {
  padding: 80px 0;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 533px) 1fr;
  gap: 40px;
  align-items: start;
}

.about__image {
  border-radius: 20px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  object-fit: cover;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__body .about__text + .about__text {
  margin-top: 28px;
}

.about__title {
  font-size: 64px;
  line-height: 76.80px;
}

.about__text {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text-secondary);
}



/* ============================================
   Photography Light Mode Overrides
   ============================================ */

.page-photography {
  background-color: #F7F7F7;
}

.page-photography .nav {
  background-color: #F7F7F7;
}

.page-photography .nav__link {
  color: #12141D;
}

.page-photography .nav__link-text--hover {
  color: #12141D;
}

.page-photography .nav__hamburger span {
  background-color: #12141D;
}

.page-photography .nav__mobile-overlay {
  background-color: #F7F7F7;
}

.page-photography .photography-hero__title {
  color: #12141D;
}

.page-photography .photography-hero__description {
  color: #12141D;
}

.page-photography .footer__link,
.page-photography .footer__link-text--hover {
  color: #12141D;
}

.page-photography .btn-nav {
  background-color: #12141D;
  color: #FAFAFA;
  outline: none;
}

.page-photography .btn-nav:hover {
  background-color: transparent;
  color: #12141D;
  outline: 1px solid #808080;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .photography-hero {
    padding: 40px 0 24px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    grid-auto-rows: 280px;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--short {
    grid-row: span 1;
  }

  .gallery__item--full {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item-caption {
    opacity: 1;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero {
    padding: 40px 0;
  }

  .about__title {
    font-size: 40px;
    line-height: 48px;
  }

  .about__text {
    font-size: 18px;
    line-height: 25.20px;
  }

  .about__body .about__text + .about__text {
    margin-top: 25px;
  }
}
