@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* ===== PAGE BACKGROUND ===== */
.main {
  background: #ffffff;
}

/* ===== HOME SECTION ===== */
.image-home {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.image-home h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

.image-home p {
  color: #555;
  font-size: 1.1rem;
}

/* ===== SECTION HEADER ===== */
.section__header.text {
  text-align: left;
}

.section__header.text::after {
  margin: 12px 0 0;
}

/* ===== IMAGE SECTION ===== */
#gallery {
  padding-top: 2rem;
}

/* ===== IMAGE GRID ===== */
.image-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* IMAGE CARD */
.image-grid img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: 18px;
  border: 2px solid #9e9d9d;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===== VIDEO SECTION ===== */
#videos {
  margin-top: 1rem;
}

/* ===== VIDEO GRID ===== */
.video-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-grid video {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid video:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===== SECTION HEADERS ===== */
.section__header {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* line on RIGHT side */
.section__header::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #e82574;
  border-radius: 10px;
  display: inline-block;
  margin-left: 12px;
}

/* remove any left/below line */
.section__header::before {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .image-home h1 {
    font-size: 2.1rem;
  }

  .image-grid img {
    height: 200px;
  }

  .video-grid video {
    height: 200px;
  }
}
