/* ===========================
   VIDEO – GALLERY 
   =========================== */
.section1 {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.section1 h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.section1 p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 130ch;
  font-family: 'Inter', sans-serif;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Αν έχεις video μέσα στο container */
.video-container {
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 18px;
  display: flex;
}


/* ===========================
   RESPONSIVE (TABLET + MOBILE)
   =========================== */

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}