@import url('/base.css');

.page-container {
  flex: 1;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8f4fd 50%, #fff 100%);
  padding: 80px 60px;
  min-height: 80vh;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-eyebrow {
  color: #ff9500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: #5a5a5a;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

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

.gallery-item video {
  width: 100%;
  height: 100%;
  object-position: center;
  transform: scale(1.35);
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.4);
}

@media (max-width: 968px) {
  .page-container {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 40px 20px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}