/* Exhibitions Page Specific Styles */

/* Page Header */
.page-header {
  padding: 100px 60px 80px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 50%, #f8f9fa 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 112, 79, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 112, 79, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-header p {
  font-size: 18px;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Stats Section */
.stats-section {
  padding: 80px 60px;
  background: linear-gradient(180deg, white 0%, #fafafa 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 40px 30px;
  border-radius: 20px;
  background: white;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(214, 112, 79, 0.15);
  border-color: rgba(214, 112, 79, 0.2);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
  transition: var(--transition);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Exhibitions Section */
.exhibitions-section {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1s; }
.timeline-item:nth-child(11) { animation-delay: 1.1s; }
.timeline-item:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item:hover .timeline-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  padding: 35px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-left: 5px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-light));
  transition: var(--transition);
}

.timeline-content::after {
  content: '';
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(214, 112, 79, 0.05),
    transparent
  );
  transition: right 0.6s ease;
}

.timeline-item:hover .timeline-content::after {
  right: 100%;
}

.exhibition-year {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-bottom: 18px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(214, 112, 79, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.exhibition-year::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.timeline-item:hover .exhibition-year::before {
  left: 100%;
}

.timeline-item:hover .exhibition-year {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 112, 79, 0.4);
}

.exhibition-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.4;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.timeline-item:hover .exhibition-title {
  color: var(--accent);
}

.exhibition-venue {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.exhibition-venue::before {
  content: '📍';
  font-size: 14px;
  opacity: 0.8;
}

.timeline-item:hover .exhibition-venue {
  color: var(--accent);
  transform: translateX(4px);
}


.exhibition-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 14px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* Awards Section */
.awards-section {
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
}

.awards-section .section-title {
  color: white;
}

.award-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.award-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.award-details {
  font-size: 16px;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 20px 60px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
  
  .page-header::before,
  .page-header::after {
    width: 300px;
    height: 300px;
  }
  
  .stats-section {
    padding: 60px 20px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  .exhibitions-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 60px;
  }
  
  .timeline {
    padding: 20px 0;
  }
  
  .timeline-item {
    margin-bottom: 50px;
  }
  
  .timeline-content {
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .timeline-item:hover .timeline-content {
    transform: translateY(-4px);
  }
  
  .exhibition-year {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .exhibition-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
  
  .exhibition-venue {
    font-size: 14px;
  }
  
  .awards-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 28px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .exhibition-title {
    font-size: 17px;
  }
}
