/* Photo Section */
.photo-section {
  padding: 0;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.photo-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
  filter: blur(40px);
}

.photo-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 200px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
  filter: blur(40px);
}

.photo-section .shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  animation: photo-shimmer 4.5s ease-in-out infinite;
}

@keyframes photo-shimmer {
  0% {
    left: -100%;
  }
  11.11% {
    left: 100%;
  }
  11.12%, 100% {
    left: 100%;
  }
}

.photo-section .full-landing-wrapper {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 70%;
  max-height: 70%;
}

.photo-section-title {
  font-family: 'Panda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Для русской версии используем TitleFont вместо Berry */
html[lang="ru"] .photo-section-title,
html[lang="ru-RU"] .photo-section-title {
  font-family: 'TitleFont', 'Berry', 'Panda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(120px, 25vw, 300px);
  font-weight: 400;
  text-align: center;
  letter-spacing: -5px;
  color: #ffffff;
  text-transform: lowercase;
  margin: 0;
  line-height: 0.9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100vw;
}

@media (max-width: 768px) {
  .photo-section {
    min-height: 100vh;
    height: 100vh;
  }

  .photo-section .full-landing-wrapper {
    width: 70%;
    height: 70%;
    max-width: 70%;
    max-height: 70%;
  }

  .photo-section-title {
    font-size: clamp(100px, 30vw, 200px);
    letter-spacing: -4px;
  }
}

