.video-intro {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.video-intro .container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.intro-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.activity-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.activity-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.video-count {
  display: inline-block;
  font-size: 0.85rem;
  background: #d8a143;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Responsive grid */
@media (min-width: 600px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .activity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}






.video-section {
  padding: 2rem;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}
.section-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.section-intro h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-intro p {
  font-size: 1rem;
  color: #555;
}

.row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.row-header h2 {
  margin: 0;
}

.more-btn {
  display: inline-block;
  background: #d8a143;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  max-width: fit-content;
}

.more-btn:hover {
  background: #bd8b32;
  color: #fff;
  text-decoration: none; /* remove underline on hover */
}


.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.video-item {
  position: relative;
  cursor: pointer;
}
.video-item video {
  width: 100%;
  border-radius: 8px;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  pointer-events: none;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

/* Modal Styles */
/* Fade animation */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: flex-start;
  padding-top: 5vh;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background: #000;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  text-align: center;
  line-height: 35px;
  z-index: 2;
}


#modalVideo {
  width: 100%;
  height: 100%;
}


/* Responsive */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
    margin-top: 1rem;
  }
}
@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

/* Newsletter Dialogue Box*/
/* Hidden by default */
#dialogBox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.dialog-content {
    background: #ffffff;
    padding: 30px 20px 20px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.dialog-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.dialog-close:hover {
    color: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
