/* ===== PREMIUM MEDIA SHOWCASE SECTION ===== */
.media-showcase-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(253, 253, 245, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.media-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 57, 47, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header */
.media-showcase-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.media-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.5rem;
  background: rgba(218, 165, 32, 0.1);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.media-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
  animation: labelShimmer 3s ease-in-out infinite;
}

@keyframes labelShimmer {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

.media-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.media-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Media Content Grid */
.media-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  align-items: stretch;
  /* Ensure equal heights */
}

/* Photo Showcase */
.photo-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.photo-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.showcase-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.6s ease;
}

.photo-container:hover .showcase-photo {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(30, 57, 47, 0.1) 0%,
      transparent 30%,
      transparent 70%,
      rgba(30, 57, 47, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}

.photo-container:hover .photo-overlay {
  opacity: 1;
}

.photo-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(218, 165, 32, 0.9);
  color: var(--deep-green-text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
  transform: translateY(-10px);
  transition: transform 0.4s ease;
}

.photo-container:hover .photo-badge {
  transform: translateY(0);
}

.photo-info {
  padding: 1.5rem;
  background: white;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.photo-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 0.5rem;
}

.photo-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Video Showcase */
.video-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-container {
  cursor: pointer;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 8px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.video-thumbnail {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.video-container:hover .thumbnail-image {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(30, 57, 47, 0.3) 0%,
      rgba(30, 57, 47, 0.1) 50%,
      rgba(218, 165, 32, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.video-container:hover .video-overlay {
  background: linear-gradient(135deg,
      rgba(30, 57, 47, 0.4) 0%,
      rgba(30, 57, 47, 0.2) 50%,
      rgba(218, 165, 32, 0.3) 100%);
}

.play-button {
  position: relative;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.video-container:hover .play-button {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.video-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 2px solid rgba(218, 165, 32, 0.6);
  border-radius: 50%;
  animation: videoPulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes videoPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.2;
  }
}

.youtube-video-wrapper {
  position: relative;
  flex: 0 0 auto;
  height: 300px;
  overflow: hidden;
}

.youtube-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.6s ease;
}

.video-container:hover .youtube-video-wrapper iframe {
  transform: scale(1.05);
}

.video-info {
  padding: 1.5rem;
  background: white;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-green-text);
  margin-bottom: 0.5rem;
}

.video-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.video-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.video-duration,
.video-quality {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .media-content-grid {
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .media-title {
    font-size: 2.5rem;
  }

  .showcase-photo,
  .youtube-video-wrapper {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .media-showcase-section {
    padding: 1.5rem 0 3rem 0;
  }

  .media-showcase-header {
    margin-bottom: 3rem;
  }

  .media-title {
    font-size: 2rem;
  }

  .media-subtitle {
    font-size: 1.1rem;
  }

  .media-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    align-items: stretch;
  }

  .showcase-photo,
  .youtube-video-wrapper {
    height: 220px;
  }

  .photo-info,
  .video-info {
    padding: 1.25rem;
  }

  .media-showcase-section .video-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .media-showcase-section {
    padding: 1rem 0 2.5rem 0;
  }

  .media-title {
    font-size: 1.8rem;
  }

  .media-subtitle {
    font-size: 1rem;
  }

  .media-content-grid {
    padding: 0 0.75rem;
  }

  .showcase-photo,
  .youtube-video-wrapper {
    height: 280px;
  }

  .photo-container,
  .video-container {
    border-radius: 16px;
  }

  .photo-info,
  .video-info {
    padding: 1rem;
  }

  .photo-title,
  .video-title {
    font-size: 1.2rem;
  }

  .photo-description,
  .video-description {
    font-size: 0.95rem;
  }

  .play-button svg {
    width: 28px;
    height: 28px;
  }

  .video-pulse {
    width: 70px;
    height: 70px;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {

  .photo-container,
  .video-container,
  .play-button,
  .showcase-photo,
  .thumbnail-image {
    transition: none !important;
    animation: none !important;
  }

  .video-pulse,
  .media-label::before {
    animation: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {

  .photo-container,
  .video-container {
    border: 2px solid currentColor;
  }

  .media-label {
    border: 2px solid var(--muted-gold);
  }

  .play-button {
    outline: 2px solid currentColor;
  }
}

/* Focus States for Accessibility */
.video-container:focus-visible {
  outline: 3px solid var(--muted-gold);
  outline-offset: 4px;
}

.photo-container:focus-visible {
  outline: 3px solid var(--muted-gold);
  outline-offset: 4px;
}

/* Loading States */
.showcase-photo,
.thumbnail-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: imageLoading 1.5s infinite;
}

.showcase-photo[src],
.thumbnail-image[src] {
  background: none;
  animation: none;
}

@keyframes imageLoading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}