/* ===============================================
   📖 ABOUT PAGE STYLES - Typography + Glassmorphism
   =============================================== */

.about-page {
  padding: var(--spacing-xl) 0;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  font-size: 0.9rem;
}

.breadcrumb-link {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--accent-pink);
}

.breadcrumb-divider {
  color: var(--text-secondary);
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 600;
}

/* .page-title використовує typography стилі з base.css */
.page-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.page-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl) auto;
  text-align: center;
}

/* Content Sections */
.about-content {
  margin-bottom: var(--spacing-xl);
}

.content-section {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur-medium);
}

/* .content-section h2 використовує typography стилі з base.css */

/* Gallery Section */
.about-gallery-section {
  margin-bottom: var(--spacing-xl);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* .gallery-header h2 використовує typography стилі з base.css */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* Video Section */
.about-video-section {
  margin-bottom: var(--spacing-xl);
}

.video-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* .video-header h2 використовує typography стилі з base.css */

.video-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--blur-medium);
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  border: none;
}

/* CTA Section */
.about-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--blur-medium);
}

/* .about-cta h2 використовує typography стилі з base.css */

.about-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-lg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-page {
    padding: var(--spacing-md) 0;
  }
  
/* .page-subtitle використовує typography стилі з base.css */
  
  .content-section {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .video-container {
    padding: var(--spacing-md);
  }
  
  .video-container iframe,
  .video-container video {
    height: 250px;
  }
  
  .about-cta {
    padding: var(--spacing-lg);
  }
  
/* .about-cta p використовує typography стилі з base.css */
}

@media (max-width: 480px) {
  .content-section {
    padding: var(--spacing-sm);
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .video-container iframe,
  .video-container video {
    height: 200px;
  }
}
