:root {
    --gold: #c7921e;
    --dark: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* ================= INFO SECTION ================= */

.info {
  height: 220px;
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* background */
.info-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dark overlay */
.info-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* content */
.info-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.info-content h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* underline */
.underline {
  width: 120px;
  height: 5px;
  background: var(--gold);
  border-radius: 20px;
  margin: 14px auto 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .info {
    height: 200px;
  }

  .info-content h1 {
    font-size: 24px;
  }

  .underline {
    width: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .info {
    height: 180px;
    margin: 0 6px;
    border-radius: 12px;
  }

  .info-content h1 {
    font-size: 22px;
  }

  .underline {
    height: 4px;
    width: 90px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .info {
    height: 160px;
  }

  .info-content h1 {
    font-size: 20px;
  }

  .underline {
    width: 80px;
  }
}


/* ================= MEDIA GALLERY ================= */

.media-gallery {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Tabs */
.media-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 8px;
}

.tab-btn.active {
  background: #c7921e;
  color: #000;
}

/* Grid */
.media-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.media-grid.active {
  display: grid;
}

/* Cards */
.media-card {
  background: #f6f6f6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

.media-card:hover {
  transform: translateY(-6px);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video */
.media-card.video video {
  height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .media-tabs {
    gap: 10px;
  }
}
