body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #071c2f, #0d2d4d);
  color: white;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    align-items: center;
    justify-content: center;
}

/* HEADER - handled by nav.js + nav.css */
header:not(.site-header) { display: none; }
.logo img { display: none; }

.activities-section {
  padding: 80px 8%;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #00d4ff, #00ffcc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.activity-tabs {
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 30px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: linear-gradient(90deg, #00d4ff, #00ffcc);
  color: black;
}

.activity-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.active-tab {
  display: grid;
}

/* Transparent Card */
.activity-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  transition: 0.4s;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.activity-card img {
  width: 100%;
  height: 180px;
  object-fit: fill;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* Workshop layout overrides grid */
.workshop-layout {
  display: none;
  flex-direction: column;
  gap: 30px;
}

.workshop-layout.active-tab {
  display: flex;
}

/* Full Horizontal Card */
.workshop-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 0.8s forwards;
  transition: 0.5s ease;
}

.workshop-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.4s;
}

.workshop-content {
  text-align: left;
}

.workshop-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.workshop-content p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 15px;
}

.workshop-content button {
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #00d4ff, #00ffcc);
  font-weight: 600;
  cursor: pointer;
}

/* Hover Animation */
.workshop-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
}

.workshop-card:hover img {
  transform: scale(1.05);
}

/* Hover Effects */
.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
}

.activity-card:hover img {
  transform: scale(1.05);
}

.activity-card h3 {
  margin: 10px 0;
}

.activity-card p {
  font-size: 14px;
  opacity: 0.8;
}

.button {
display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #00d4ff, #00ffcc);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 30px;
  transition: 0.3s ease;
}
.button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

/* Animation */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .workshop-card {
    flex-direction: column;
    text-align: center;
  }

  .workshop-content {
    text-align: center;
  }

  .workshop-card img {
    width: 100%;
    height: 220px;
  }
}
/* Zig-Zag Alternating */
.workshop-card:nth-child(even) {
  flex-direction: row-reverse;
}

.activities-page {
  position: relative;
  padding: 100px 8%;
  overflow: hidden;
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #0f2027);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.floating-blur {
  position: absolute;
  max-width: 100%;
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.2);
  filter: blur(120px);
  top: 20%;
  left: 10%;
  animation: floatMove 8s ease-in-out infinite alternate;
}

.blur2 {
  background: rgba(0, 255, 204, 0.2);
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes floatMove {
  from { transform: translateY(0px); }
  to { transform: translateY(-60px); }
}
/* ===================== RESPONSIVE ===================== */

body {
  padding-top: 80px;
}

.activities-section {
  padding-top: 40px;
}

@media (max-width: 900px) {
  .workshop-card {
    flex-direction: column !important;
    text-align: center;
  }
  .workshop-content {
    text-align: center;
  }
  .workshop-card img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .activities-section {
    padding: 30px 5%;
  }
  .section-title {
    font-size: 28px;
  }
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .tab-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
