/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #4B0082; /* Purple */
    color: #FFFFFF; /* White */
  }
  
  header {
    background-color: #800080; /* Darker Purple */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
  }
  
  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #FFD700; /* Gold */
    text-decoration: none;
  }
  
  main {
    padding: 20px;
  }
  
  footer {
    background-color: #800080; /* Darker Purple */
    text-align: center;
    padding: 10px;
    position: static;
    bottom: 0;
    width: 100%;
  }
  
  /* Activity Cards */
  .activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    background-color: #6A0DAD; /* Lighter Purple */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 2px solid #FFD700; /* Gold */
  }
  .card:hover{
    box-shadow: #0000; /* Change background color on hover */
    cursor: pointer; /* Change cursor to a pointer */
    transform: scale(1.05); /* Optional: Slightly scale up the element */
    transition: .2s;
  }
  
  .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
  }
  .card video {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .card h3 {
    margin: 10px 0;
    color: #FFD700; /* Gold */
  }
  
  /* Members Table */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  table th, table td {
    padding: 10px;
    border: 1px solid #FFD700; /* Gold */
    text-align: center;
  }
  
  table th {
    background-color: #6A0DAD; /* Lighter Purple */
    color: #FFD700; /* Gold */
  }
  
  table img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  
  /* Leadership Grid */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .leader {
    background-color: #6A0DAD; /* Lighter Purple */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 2px solid #FFD700; /* Gold */
  }
  
  .leader img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #FFD700; /* Gold */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav ul li {
      display: block;
      margin: 10px 0;
    }
  
    .activity-cards, .grid-container {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }