:root {
  --accent: 136, 58, 234;
  --accent-light: 224, 204, 250;
  --accent-dark: 49, 10, 101;
}

body {
  background-color: #1a1a1a;
  font-family: 'Lato', sans-serif;
  margin: 0;
  min-height: 100vh;
  color: white;
}

.text-purple-400 {
  color: #7f3bec !important;
}

.text-purple-300 {
  color: #7f3bec !important;
}

a.text-purple-400:hover,
a.text-purple-300:hover,
a:hover.text-purple-400,
a:hover.text-purple-300,
.hover\:text-purple-300:hover {
  color: #7f3bec !important;
}

/* navbar */

.navbar {
  position: absolute;
  top: 0; /* Align to the top of the page */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.418); /* Semi-transparent background */
  border-radius: 8px;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  z-index: 2; /* Ensure it appears above other elements */
  width: fit-content; /* Adjust width to fit content */
}

.navbar a {
  color: #ffffff; /* White text for contrast */
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #b399ff; /* Hover color */
}

.bg-purple-400 {
  background-color: #7f3bec !important;
}

.hover\:bg-purple-300:hover {
  background-color: #7f3bec !important;
}

.landing-section {
  background-image: url('1516567.png'); /* Set your background image here */
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.raindrop {
  position: absolute;
  bottom: 100%;
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.082); /* Brighter and more opaque */
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

.sticky-header {
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.title {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-top: -10px; /* Move title slightly up */
}

/* Updated styles for About Us and Members sections */
section {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0);
  padding: 40px 30px;      /* increased padding for bigger box */
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 900px;        /* wider max width */
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  color: #ffffff;  /* White title */
  margin-bottom: 28px;
  font-size: 2.75rem;
  font-weight: 700;
}

section p, section li {
  color: #f0f0f0;
  font-size: 1.2rem;       /* larger paragraph text */
  line-height: 1.75;       /* more spacing between lines */
  margin-bottom: 18px;
}

section ul {
  padding-left: 1rem;
}

section p {
  color:  #ffffff; /* Dark text for contrast */
  line-height: 1.6; /* Increased line height for better readability */
  margin-bottom: 12px; /* Space between paragraphs */
}

section ul {
  list-style-type: none;
  padding: 0;
}

section p, section li {
  color: #ccc;
}

section li {
  margin-bottom: 12px;
}

section li strong {
  color: #ffffff;
}

section li div a {
  color: #7f3bec;
  transition: color 0.3s ease;
}

section li div a:hover {
  color: #b399ff00;
}

/* Footer bg color */

footer {
  background-color: #1a1a1a !important; /* Use !important to override other styles */
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

footer p {
  color: #ccc;
  font-size: 0.875rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
}

.thumbnail {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}