/* SECTION BACKGROUND */
.festival-section {
  /*background: var(--soft-bg);*/
  padding: 60px 20px;
  border-radius: 20px;
}

/* ===================== */
/* TAB BUTTONS */
/* ===================== */

.festival-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.festival-tabs button {
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  background: var(--mint);
  color: var(--primary-blue);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.festival-tabs button:hover,
.festival-tabs button.active {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* ===================== */
/* FANCY FESTIVAL BOX */
/* ===================== */

.festival-box {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* decorative bubble */
.festival-box::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-yellow);
  opacity: 0.2;
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

/* heading */
.festival-box h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===================== */
/* GALLERY GRID */
/* ===================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}

/* CARD STYLE */
.gallery li {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.gallery li:hover {
  transform: translateY(-6px) scale(1.02);
}

/* IMAGE */
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TITLE */
.gallery-title {
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
      background: linear-gradient(135deg, #263489, #3f51b5);
    color: #fff;
  text-align:center;
}

/* ===================== */
/* SUB HEADINGS */
/* ===================== */

.gallery li a {
  display: block;
  position: relative;
}

.gallery li a::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 30px;
  background: rgba(255,255,255,0.8);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.gallery li:hover a::after {
  transform: translate(-50%, -50%) scale(1);
}

.festival-box h4 {
  margin: 25px 0 10px;
  font-weight: 600;
  color: var(--secondary-blue);
  border-left: 4px solid var(--primary-red);
  padding-left: 10px;
}
