/* ==================================================
   GLOBAL STYLES
================================================== */
body {
  font-family: Consolas, monospace;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Container Utility */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==================================================
   NAVBAR
================================================== */

/* === NAVBAR STYLES === */

.site-header {
  background-color: #812990;
  padding: 1rem 2rem;
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }
}

/* ==================================================
   CONTACT PAGE
================================================== */

/* CONTACT PAGE */
.contact-card {
  background: white;
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
  color: #812990;
}

.card:hover .card-icon {
  transform: rotate(10deg) scale(1.1);
}

.card-content {
  flex: 1;
  color: #333;
}

.card-content h2 {
  margin-bottom: 0.25em;
  color: #812990;
}

.contact-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #812990;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  background-color: #6d1b7c;
}


/* MEDIA QUERIES */
@media (max-width: 600px) {


}

/* ===========FOOTER===================== */
/* ========== Footer ========== */

/* FOOTER */
.site-footer {
  background-color: #812990;
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #ffffff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #d6b3e2;
}


/* ========== Events Page Cards ========== */
.blog-posts {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 900px;
}

.blog-post {
  background-color: #f7f1f9;
  margin-bottom: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.blog-post h3 {
  margin-top: 0;
  color: #812990;
  font-size: 1.4rem;
}

.blog-post h3 a {
  text-decoration: none;
  color: #812990;
}

.blog-post h3 a:hover {
  text-decoration: underline;
}

.post-details {
  font-size: 0.9rem;
  color: #666;
  margin: 0.5rem 0 1rem;
}

.post-content p {
  margin-bottom: 0.5rem;
}

.blog-post a {
  color: #6d1b7c;
  font-weight: bold;
  text-decoration: none;
}

.blog-post a:hover {
  text-decoration: underline;
}

/* ========== Page Header (Events) ========== */
/* PAGE HEADERS */
.page-header {
  background: linear-gradient(135deg, #812990, #a45fc2);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  margin: 0;
}

/* ========== Index Page Hero Image ========== */

/* HERO SECTION */
.hero {
  text-align: center;
  margin: 2rem 0;
}

.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* ========== Scroll Sections ========== */
.scroll-section {
  min-height: 100vh;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fefefe;
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-section:nth-child(even) {
  background: #f3e8f8; /* Soft lavender alternate bg */
}

.scroll-section h2 {
  color: #812990;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.scroll-section img {
  width: 90%;
  max-width: 600px;
  margin-top: 1rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* ========== Info Cards (Who We Are, What We Do, How to Join) ========== */
/* INFO CARDS (Who We Are, What We Do, Join) */
.info-card {
  background-color: #f7f1f9;
  padding: 2rem;
  margin: 1.5rem auto;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
  text-decoration: none;
  display: block;
}

.info-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  color: #812990;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #6d1b7c;
  text-decoration: underline;
}


.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-card.alt {
  background-color: #e9d8f4;
}

/* Style specifically for clickable card */
.info-card.join-card {
  cursor: pointer;
  background: linear-gradient(135deg, #812990, #a45fc2);
  color: #fff;
}

.info-card.join-card:hover {
  box-shadow: 0 6px 24px rgba(129, 41, 144, 0.4);
  transform: scale(1.02);
}

/* ========== Officer Carousel ========== */
.officer-carousel {
  background-color: #f7f1f9;
  text-align: center;
  padding: 4rem 1rem;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.officer-card {
  display: none;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  width: 360px;
  min-height: 420px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.officer-card.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.officer-card img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 4px solid #812990;
}

/* Arrows */
.carousel-btn {
  font-size: 2rem;
  background-color: #812990;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 5;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-btn:hover {
  background-color: #6d1b7c;
  transform: scale(1.1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .carousel-container {
    flex-direction: column;
  }
  .carousel-btn {
    margin: 1rem 0;
  }
}





