/* Default Light Mode */
:root {
  --primary: rgb(194, 10, 194);
  --dark: rgb(92, 5, 92);
  --green: #0fbd0f;
  --dark-green: #033803;
  --light: #EFFDF5;
  --white: #FFFFFF;
  --dark-white: #DDDDDD;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --primary: #0fbd0f; /* keep brand purple */
  --dark: #033803;   /* lighter purple for contrast */
  --green: rgb(194, 10, 194);             /* brighter green for visibility */
  --dark-green: rgb(92, 5, 92);        /* softened dark green */
  --light: #EFFDF5;             /* dark background */
  --white: #FFFFFF;             /* light text */
  --dark-white: #DDDDDD;        /* muted text */
}


/* Example usage */
body {
  /* background-color: var(--light); */
  /* color: var(--dark); */
  transition: background-color 0.3s, color 0.3s;
}

.light-dark {
  background: none;
  border: none;
  font-size: 2rem; /* make the icon big enough */
  cursor: pointer;
  margin: 20px;
  transition: transform 0.3s ease;
}

.light-dark:hover {
  transform: rotate(20deg); /* playful hover effect */
}



/* =================== WhatsApp Button Container ====================== */

.whatsapp-button {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 30px;
  height: 30px;
  animation: bounce 2s infinite ease-in-out;
}

/* Bouncing Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 30px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}

/* =================== ABOUT VIDEO INTRO =================== */

    .video-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .video-section h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2rem;
    }

    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Responsive text */
    @media (max-width: 768px) {
      .video-section h2 {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .video-section {
        padding: 10px;
      }
      .video-section h2 {
        font-size: 1.2rem;
      }
    }


/* ++++++++++++++++++++++ ABOUT VIDEO Start ++++++++++++++++++++ */
  
.video-header {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.video-gallery {
  display: grid;
  /* Force 4 columns max on large screens */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 2rem 0 2rem;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }
}

.video-gallery video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #000;
}

/* Responsive heading */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.2rem;
  }
}
