/* RESET CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: transparent; /* For Scroll Overlap from Smooth Scrolling */
  overflow-x: hidden;
	overscroll-behavior: none;
}

/* Fonts */
@font-face {
  font-family: "Amazon Ember Display";
  src: url("../fonts/AmazonEmberDisplay_Rg.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Amazon Ember";
  src: url("../fonts/AmazonEmber_Bd.ttf") format("truetype");
	font-weight: 600;
}

@font-face {
	font-family: "Geist Bold";
	src: url("../fonts/Geist-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "Geist ExtraBold";
	src: url("../fonts/Geist-ExtraBold.ttf") format("truetype");
}

/* Variables */
:root {
  /* Colors */
  --white: #ffffff;
  --officerBorderColor: #858190;
  --officerBgColor: rgba(38, 28, 59, 0.5);

  /* For Nav Animation */
  --logoToNav: -132px;
  --logoTextToNav: -185px;
  --leftmost: -50vw;
  --rightmost: 50vw;
}

/* Global/Reusable CSS */
body {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f0b26 0%, #1e003d 70%);
  height: 100%;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
	justify-content: space-between;
}

main {
	flex: 1;
}

@media (max-width: 768px) {
  .content {
    background: none;
  }

  .content-gradient {
    display: none;
  }
}

section {
  display: flex;
  width: 100%;
  min-height: auto;
}

section.hero {
  height: 100vh;
  width: 100vw;
}
.gradient-text {
  background: linear-gradient(
    135.066deg,
    #ffffff 18%,
    #bbaffd 47%,
    #efdcf1 110%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
}

/* Reusable for Navbar Div */
#navbar-component {
	min-height: 100px;
	z-index: 1000;
}

#navbar-component.main {
	min-height: 0;
}

/* Reusable Heading CSS */
.heading {
  font-size: 50px;
  font-family: "Amazon Ember", sans-serif;
  text-align: center;
  margin-top: 10px;
}

/* Navbar Container */
.navbar-container {
	z-index: 1000;
	display: flex;
	flex-direction: column;
	position: fixed;
	justify-content: center;
	align-items: center;
	width: 100vw;
}

/* Navbar Wrapper */
.navbar-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100vw;
	height: 70px;
	padding: 30px 0 20px 0;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0);
	transform: scale(1, 0.9);
	transition: backdrop-filter 0.5s, background 1.4s, transform 1s,
		box-shadow 0.5s;
}

.navbar-blurred {
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(15px);
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
	transform: scale(1);
	transition: backdrop-filter 0.5s, background 1s, transform 0.4s,
		box-shadow 0.5s;
	transition-delay: 0.6s;
}

/* Navbar */
.navbar {
  display: flex;
  position: fixed;
  padding: 30px 0 20px 0;
  top: 0;
  height: 100px;
  gap: 22px;
  font-family: "Amazon Ember Display", sans-serif;
  transition: transform 1s;
  justify-content: center;
  opacity: 1;
  z-index: 2;
}

.navbar > a {
  display: flex;
  width: fit-content;
  font-size: 14px;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
}

.navbar > a::after {
  content: "";
  width: 0%;
  height: 3px;
  margin-top: 3px;
  background: var(--white);
  border-radius: 50px;
  align-self: center;
  transition: width 0.5s ease-in;
}

.navbar > a:hover::after {
  width: 100%;
  height: 3px;
  background: var(--white);
  transition: width 0.3s ease;
}

/* Navbar Logo */
.navbar-logo-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 70px;
	pointer-events: none;
}

.navbar-logo {
	position: relative;
	height: 135px;
	width: 135px;
	transition: transform 1s, margin 1s, height 1s, width 1s;
	margin: 80px 0 20px 0;
	z-index: 2;
}

.navbar-logo.scrolled {
  height: 40px;
  width: 40px;
  transform: translate(calc(var(--leftmost) + 3rem), var(--logoToNav));
	transition: transform 1s, margin 1s, height 1s, width 1s;
	pointer-events: auto;
	cursor: pointer;
}

.navbar-logo-text-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.navbar-logo-text-wrapper.scrolled {
  pointer-events: auto;
  cursor: pointer;
}

.navbar-logo-text {
  position: relative;
  justify-self: center;
  font-weight: bold;
  text-align: center;
  -webkit-text-fill-color: var(--white);
  z-index: 2;
}

.navbar-logo-text.top {
  font-family: "Geist ExtraBold", sans-serif;
	font-size: 52px;
	transition: transform 0.8s, font-size 0.8s, -webkit-text-fill-color 2.8s;
}

.navbar-logo-text.bottom {
  font-family: "Amazon Ember", sans-serif;
	white-space: nowrap;
	font-size: 30px;
	transition: transform 0.8s, font-size 0.8s;
	flex-direction: row;
	align-items: center;
}

.navbar-logo-text.bottom::before,
.navbar-logo-text.bottom::after {
  display: inline-block;
  content: "";
  height: 1px;
  width: 30px;
  margin: 0 10px 10px 10px;
  background: transparent;
  transform: scale(0.1);
  transition: background 0.3s, transform 0.5s;
}

.navbar-logo-text.bottom:not(.scrolled)::before,
.navbar-logo-text.bottom:not(.scrolled)::after {
  background: var(--white);
  opacity: 0.5;
  transform: scale(1);
}

.navbar-logo-text.scrolled.top {
  transform: translate(calc(var(--leftmost) + 8rem), var(--logoTextToNav));
  font-size: 12px;
  transition: transform 1.1s, font-size 1.1s;
}

.navbar-logo-text.scrolled.bottom {
	transform: translate(
		calc(var(--leftmost) + 8rem - 0.8rem),
		var(--logoTextToNav)
	);
	font-size: 12px;
  margin-left: 5px;
	transition: transform 1.2s, font-size 1.2s;
}

/* Dropdown Button */
.navbar-dropdown-button {
  display: none;
  font-size: 12px;
  height: 25px;
  width: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2.5rem;
}

.navbar-dropdown-button > img {
	height: 18px;
	width: 18px;
}

/* Dropdown Header */
.navbar-dropdown-header {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 0 20px 0;
  width: 100vw;
}

.navbar-dropdown-logo {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.navbar-dropdown-logo > img {
  height: 25px;
  width: 25px;
}

.navbar-dropdown-logo-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-align: left;
}

.navbar-dropdown-logo-text > p:first-of-type {
  font-family: "Amazon Ember", sans-serif;
  font-weight: bold;
  font-size: 12px;
}

.navbar-dropdown-logo-text > p:last-of-type {
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 8px;
}

/* Navbar Media Queries */
@media (min-width: 768px) {
  .navbar.scrolled:not(.dropdown) {
    transform: translateX(calc(var(--rightmost) - 15rem));
    transition: transform 1s;
  }
}

@media screen and (max-width: 768px) {
	.navbar-logo {
		margin: 40px 0 40px 0;
	}

	.navbar-logo.scrolled {
		margin: 80px 0 20px 0;
	}

	.navbar-logo-text-wrapper {
		gap: 15px;
		transition: gap 0.5s;
	}

	.navbar-logo-text-wrapper.scrolled {
		gap: 0px;
		transition: gap 0.5s;
	}

	.navbar-logo-text.top {
		font-size: 54px;
		line-height: 1;
	}

	.navbar-logo-text.bottom {
		font-size: 24px;
	}

	.navbar-logo-text.bottom::before,
	.navbar-logo-text.bottom::after {
		display: none;
	}
	
	.navbar-dropdown-button {
		display: block;
	}

  .navbar-wrapper {
    position: relative;
    justify-content: flex-end;
    transform: scale(1, 1);
    z-index: 1;
  }

  .navbar {
    position: fixed;
    background: linear-gradient(180deg, #0f0b26 0%, #1e003d 70%);
    flex-direction: column;
    gap: 40px;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    padding: 0;
    z-index: 100;
    transition: left 1s;
  }

  .navbar.dropdown {
    left: 0px;
    transition: left 1s;
  }

  .navbar-dropdown-header {
    display: flex;
    padding-left: 1rem;
  }

  /* Prevent Scrolling when Dropdown Nav */
  body.dropdown {
    overflow: hidden;
  }
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 15%,
    black 80%,
    transparent
  ); /* Adjust direction and stop points for desired feathering */
  mask-image: linear-gradient(to bottom, black 15%, black 80%, transparent);
  z-index: 2;
}

.hero-gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  align-self: center;
  transform: scale(2.3, 2.5) rotate(-5deg) translate(-8%, -4%);
  left: 50%;
  top: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(2.3, 2.5) rotate(-5deg)
    translate(-8%, -4%);
}

.hero-buttons {
	display: flex;
	height: fit-content;
	margin-top: 68vh;
	gap: 20px;
	align-items: center;
	transition: margin 1s;
}

.hero-buttons > button {
	display: flex;
	width: fit-content;
	text-align: center;
	font-family: "Geist Bold";
	font-size: 14px;
	padding: 10px 30px;
	border-radius: 5px;
	color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(28px);
	border: solid 1px rgba(255, 255, 255, 0.5);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: transform 0.5s;
	z-index: 2;
}

.hero-buttons > button:hover {
	transform: scale(1.05);
	transition: transform 0.5s;
}

.hero-buttons > button > img {
	height: 18px;
	width: 18px;
}

.hero-clouds {
  display: flex;
  position: absolute;
  height: fit-content;
  width: 165%;
  justify-content: space-between;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-clouds > img {
	width: 45%;
}

@media screen and (max-width: 768px) {
	.hero-gradient {
		transform: scale(3.1, 3.3) rotate(-0deg) translate(-4.5%, 1.5%);
		left: 0;
		top: 0;
	}

	.hero-buttons {
		flex-direction: column;
		margin-top: 75vh;
		transition: margin 1s;
	}

	.hero-clouds {
		display: none;
	}
}

.centerDiv {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Style taken from Why Us Section*/

.content-gradient {
  position: absolute;
  height: 90%;
  width: 100%;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3.5, 3.8);
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  pointer-events: none;
}

/* Club Highlights Section */
.club-highlights {
  position: relative;
  padding: 80px 40px 120px;
  min-height: auto;
  height: auto;
  display: block;
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
}

.club-highlights-content {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.club-highlights-content p {
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 40px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.club-highlights-content h2 {
  font-family: "Geist", sans-serif;
  font-size: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 20%, #bbaffd 50%, #efdcf1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlights-cards {
  display: grid;
  grid-template-columns: 5.5fr 1.8fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: visible;
  width: 100%;
}

.highlight-card:first-child {
  min-height: 540px;
  padding: 0;
  border: none;
  overflow: hidden;
  width: 100%;
  display: flex;
}

.highlight-image {
  width: 100%;
  height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  flex: 1;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-wrapper {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 33.333%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide .highlight-image {
  border-radius: 20px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.highlight-card h3 {
  font-family: "Amazon Ember", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Stats cards on the right */
.highlights-cards .highlight-card:last-child {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  justify-content: space-between;
  background: transparent;
  border: none;
  backdrop-filter: none;
  height: 540px;
  overflow: visible;
}

.stat-card {
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 170px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-color: #ffffff8c;
}

.stat-card h4 {
  font-family: "Amazon Ember", sans-serif;
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  margin: 15px auto 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
}

.stat-number img {
  width: 60px;
  height: 60px;
  opacity: 0.9;
  flex-shrink: 0;
  vertical-align: middle;
}

.stat-number span {
  font-family: "Geist ExtraBold", sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ffffff 20%, #bbaffd 50%, #efdcf1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1024px) {
  .highlights-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 700px;
  }
  
  .club-highlights h2 {
    font-size: 3.5rem;
  }
  
  .club-highlights > p {
    margin-bottom: 80px;
  }
  
  .highlight-card:first-child {
    min-height: 400px;
    width: 100%;
    display: flex;
  }
  
  .carousel-container {
    height: 400px;
  }
  
  .highlight-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    flex: 1;
  }
  
  .highlights-cards .highlight-card:last-child {
    flex-direction: row;
    gap: 25px;
    padding: 0;
    height: 120px;
  }
  
  .stat-card {
    padding: 0 20px;
    height: 120px;
  }

  .stat-card h4 {
    font-size: 0.9rem;
    margin: 0 auto 10px;
  }
  
  .stat-number img {
    width: 40px;
    height: 40px;
  }
  
  .stat-number span {
    font-size: 2.2rem;
  }

  .events-gradient {
    display: none;
  }
}

@media (max-width: 768px) {
  .club-highlights {
    padding: 60px 50px 80px;
    margin-bottom: 60px;
  }
  
  .club-highlights h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .club-highlights p {
    font-size: 0.8rem;
  }
  
  .highlight-card:first-child {
    min-height: 420px;
    padding: 0;
    width: 100%;
    display: flex;
  }
  
  .carousel-container {
    height: 420px;
  }
  
  .highlight-image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    flex: 1;
  }
  
  .highlights-cards .highlight-card:last-child {
    flex-direction: column;
    gap: 12px;
    padding: 0;
    height: auto;
  }
  
  .stat-card {
    padding: 5px 20px;
    height: 150px;
  }
  
  .stat-card h4 {
    font-size: 0.8rem;
    margin: 15px auto 10px;
  }

  .stat-number {
    margin: 0 30px 15px;
  }
  
  .stat-number img {
    width: 80px;
    height: 80px;
  }
  
  .stat-number span {
    font-size: 3.8rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    padding: 10px;
  }

  .carousel-btn:hover {
    background: rgba(0, 0, 0, 0);
    transform: translateY(-50%) scale(1.1);
	}
}

/* Why Us Section */
.why-us {
  position: relative;
  padding: 80px 40px;
  min-height: 100vh;
}

.content-gradient {
  position: absolute;
  height: 90%;
  width: 100%;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3.5, 3.8);
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  pointer-events: none;
}

.why-us-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 3;
}

.why-us-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.why-us-header h2 {
  font-family: "Geist ExtraBold", sans-serif;
  font-size: 3rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 20%, #bbaffd 50%, #efdcf1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us-header p {
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
}

.why-us-header .tagline {
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #bbaffd;
  margin-top: 20px;
}

.why-us-header .tagline strong {
  color: #ffffff;
}

.why-us-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-us-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(187, 175, 253, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(187, 175, 253, 0.25);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-us-card h3 {
  font-family: "Amazon Ember", sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
}

.why-us-card p {
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .why-us-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-us-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    margin: 0 auto;
  }

  .why-us-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 60px 20px;
  }

  .why-us-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .why-us-header h2 {
    font-size: 2rem;
  }

  .why-us-header p {
    font-size: 1rem;
  }

  .why-us-card h3 {
    font-size: 2rem;
  }

  .why-us-card {
    padding: 30px 20px;
    text-align: center;
  }

  .why-us-card:hover,
  .why-us-card:active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(187, 175, 253, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(187, 175, 253, 0.3);
    transition: all 0.3s ease;
  }

  .card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .card-text {
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .card-icon {
    flex-shrink: 0;
    margin: 0;
    align-self: center;
    width: 100px;
    height: 100px;
  }
  .card-1 .card-content {
    flex-direction: row;
  }

  .card-2 .card-content {
    flex-direction: row-reverse;
  }

  .card-2 .card-text {
    text-align: center;
    align-items: center;
  }

  .card-3 .card-content {
    flex-direction: row;
  }

  .grid-dots {
    display: none;
  }
}

@media (max-width: 400px) {
  .club-highlights {
    padding: 40px 30px 60px;
    margin-bottom: 40px;
  }

  .highlight-cards {
    height: auto;
  }

  .stat-number {
    margin: 0 35px 15px;
  }

  .stat-card h4 {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  
  .stat-number img {
    width: 60px;
    height: 60px;
  }
  
  .stat-number span {
    font-size: 3.2rem;
  }

  .why-us-header h2 {
    font-size: 2rem;
  }

  .why-us-header p {
    font-size: 0.9rem;
  }

  .why-us-header .tagline {
    font-size: 1rem;
  }

  .why-us-card h3 {
    font-size: 1.8rem;
  }

  .why-us-card p {
    font-size: 0.9rem;
  }

  .why-us {
    padding: 40px 15px;
  }

  .card-content {
    gap: 15px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }
}

/* UNIFIED BACKGROUND ELEMENTS*/

/* Page containers with background support */
.page-with-background {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  isolation: isolate;
}

/* Unified gradient background */
.bg-gradient {
  position: absolute;
  height: 60vh;
  width: 100%;
  align-self: center;
  left: 50%;
  top: 50vh;
  opacity: 0.8;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(2.5, 2.8) rotate(-10deg)
    translate(-8%, -4%);
  z-index: 1;
  pointer-events: none;
}

/* Unified cloud elements */
.bg-cloud-left {
  position: absolute;
  left: -20%;
  top: 5%;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  width: 50%;
  height: auto;
  max-height: 80vh;
}

.bg-cloud-right {
  position: absolute;
  right: -20%;
  top: 20%;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  width: 50%;
  height: auto;
  max-height: 80vh;
}

/* Responsive behavior for background elements */
@media (max-width: 768px) {
  .bg-cloud-left,
  .bg-cloud-left-2,
  .bg-cloud-right {
    display: none;
  }

  .bg-gradient {
    top: 40vh;
  }
}

/* Officers Page Background */
/* Uses unified background classes: .page-with-background, .bg-gradient, .bg-cloud-left, .bg-cloud-right */

.centerDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Style taken from Why Us Section*/

.content-gradient {
  position: absolute;
  height: 90%;
  width: 100%;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3.5, 3.8);
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  pointer-events: none;
}

/* Club Highlights Section */
.club-highlights {
  position: relative;
  padding: 80px 40px 120px;
  min-height: auto;
  height: auto;
  display: block;
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
}

.club-highlights-content {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.club-highlights-content p {
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto 40px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.club-highlights-content h2 {
  font-family: "Geist", sans-serif;
  font-size: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 20%, #bbaffd 50%, #efdcf1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlights-cards {
  display: grid;
  grid-template-columns: 5.5fr 1.8fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: visible;
  width: 100%;
}

.highlight-card:first-child {
  min-height: 540px;
  padding: 0;
  border: none;
  overflow: hidden;
  width: 100%;
  display: flex;
}

.highlight-image {
  width: 100%;
  height: 540px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  flex: 1;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-wrapper {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 33.333%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide .highlight-image {
  border-radius: 20px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}

.highlight-card h3 {
  font-family: "Amazon Ember", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Stats cards on the right */
.highlights-cards .highlight-card:last-child {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  justify-content: space-between;
  background: transparent;
  border: none;
  backdrop-filter: none;
  height: 540px;
  overflow: visible;
}

.stat-card {
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 170px;
  transition: all 0.3s ease;
  border-color: #ffffff8c;
	align-items: center;
	transform: scale(1);
	transition: transform 0.5s;
}

.stat-card:hover {
	transform: scale(1.05);
	transition: transform 0.5s;
}

.stat-card h4 {
  font-family: "Amazon Ember", sans-serif;
  font-size: 0.85rem;
  color: rgb(255, 255, 255);
  margin: 15px auto 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
	width: 100%;
	max-width: 250px;
	gap: 15px;
}

.stat-number img {
  width: 60px;
  height: 60px;
  opacity: 0.9;
  flex-shrink: 0;
  vertical-align: middle;
}

.stat-number span {
  font-family: "Geist ExtraBold", sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #ffffff 20%, #bbaffd 50%, #efdcf1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1024px) {
  .highlights-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
  }
  
  .club-highlights h2 {
    font-size: 3.5rem;
  }
  
  .club-highlights > p {
    margin-bottom: 80px;
  }
  
  .highlight-card:first-child {
    min-height: 400px;
    width: 100%;
    display: flex;
  }
  
  .carousel-container {
    height: 400px;
  }
  
  .highlight-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    flex: 1;
  }
  
  .highlights-cards .highlight-card:last-child {
    flex-direction: row;
    gap: 25px;
    padding: 0;
    height: 120px;
  }
  
  .stat-card {
    padding: 0 20px;
    height: 120px;
  }

  .stat-card h4 {
    font-size: 0.9rem;
    margin: 0 auto 10px;
  }
  
  .stat-number img {
    width: 40px;
    height: 40px;
  }
  
  .stat-number span {
    font-size: 2.2rem;
  }

  .events-gradient {
    display: none;
  }
}

@media (max-width: 768px) {
  .club-highlights {
    padding: 60px 50px 80px;
    margin-bottom: 60px;
  }
  
  .club-highlights h2 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .club-highlights p {
    font-size: 0.8rem;
  }
  
  .highlight-card:first-child {
    min-height: 420px;
    padding: 0;
    width: 100%;
    display: flex;
  }
  
  .carousel-container {
    height: 420px;
  }
  
  .highlight-image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    flex: 1;
  }
  
  .highlights-cards .highlight-card:last-child {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    height: auto;
  }
  
  .stat-card {
    padding: 5px 20px;
    height: 150px;
  }
  
  .stat-card h4 {
    font-size: 0.8rem;
    margin: 15px auto 10px;
  }

  .stat-number {
    margin: 0 30px 15px;
  }
  
  .stat-number img {
    width: 80px;
    height: 80px;
  }
  
  .stat-number span {
    font-size: 3.8rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
    padding: 10px;
  }

  .carousel-btn:hover {
    background: rgba(0, 0, 0, 0);
    transform: translateY(-50%) scale(1.1);
  }
}

@media (max-width: 400px) {
  .club-highlights {
    padding: 40px 30px 60px;
    margin-bottom: 40px;
  }

  .highlight-cards {
    height: auto;
  }

  .stat-number {
    margin: 0 35px 15px;
  }

  .stat-card h4 {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  
  .stat-number img {
    width: 60px;
    height: 60px;
  }
  
  .stat-number span {
    font-size: 3.2rem;
  }
}

/* Department Heads Section */
#leads-component,
#deptHeads-component,
#committeeHeads-component {
	margin-top: 40px;
}

#committeeHeads-component {
  margin-bottom: 70px;
}

.leads-heading,
.deptHeads-heading,
.committeeHeads-heading {
  font-size: 50px;
  font-family: "Amazon Ember", sans-serif;
}

#leads-cards,
#deptHeads-cards,
#committeeHeads-cards {
  display: flex;
  margin-top: 30px;
  gap: 50px;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 8%;
}

/* Officer Heading and Subheading */
#officers-text {
  text-align: center;
  width: 100%;
	padding: 0 12%;
}

.officers-heading {
  font-size: 40px;
  font-family: "Amazon Ember", sans-serif;
}

.officers-description {
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 20px;
}

/* Officer Card */
.officer-card {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: flex-end; /* Align content to bottom */
	z-index: 1;
	width: 250px;
	height: 350px;
	border: 1px var(--officerBorderColor) solid;
	border-radius: 10px;
	background-color: var(--officerBgColor);
	overflow: hidden; /* Clips image in normal state */
}

/* Animation keyframes for delayed overflow */
@keyframes delayedOverflowHidden {
	0% { overflow: visible; }
	99.9% { overflow: visible; }
	100% { overflow: hidden; }
}

@keyframes immediateOverflowVisible {
	0% { overflow: visible; }
	100% { overflow: visible; }
}

.officer-card:not(:hover) {
	animation: delayedOverflowHidden 0.5s ease-in-out forwards;
}

.officer-card:hover {
	animation: immediateOverflowVisible 0s ease-in-out forwards;
	z-index: 10;
}

.officer-info {
	position: absolute;
	bottom: 0;
	padding-left: 10px;
	padding-bottom: 10px;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
	z-index: 2; /* Ensure text stays above the image */
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.officer-name {
	color: #e5e5e5;
	font-family: "Amazon Ember", sans-serif;
	font-size: 16px;
}

.officer-position {
	color: #e5e5e5;
	font-weight: 10;
	font-family: "Amazon Ember Display", sans-serif;
	font-size: 14px;
}

.officer-desc {
	color: #e5e5e5;
	padding-top: 6px;
	font-family: "Amazon Ember Display", sans-serif;
	font-size: 12px;
}

.headShot {
	height: 90%;
	object-fit: cover;
	object-position: center bottom; /* Anchor image to bottom */
	display: block;
	transition: transform 0.5s ease-in-out;
	transform-origin: center bottom; /* Scale from bottom center */
	z-index: 1;
	border-radius: 10px;
}

.headShot::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%; /* adjust height of overlay */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	backdrop-filter: blur(6px);
	pointer-events: none;
}

.officer-card:hover .headShot {
	transform: scale(1.2);
}

.officer-card:hover .officer-info {
	opacity: 0;
}

/* ABOUT PAGE */
/* Uses unified background classes: .page-with-background, .bg-gradient, .bg-cloud-left, .bg-cloud-right */

.firstDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

#about-text {
  text-align: center;
  width: 100%;
  max-width: 700px;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.club-logo {
  width: 150px;
  height: auto;
  border-radius: 50%;
}

.about-description {
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
  font-size: 20px;
}

.statements {
  margin: 60px 10px;
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.box {
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
  z-index: 2;
}

.box {
  max-width: 750px;
  padding: 25px 30px;
  border: 0.5px solid #e6c47c;
  border-radius: 20px;
  background: linear-gradient(
    to bottom,
    rgba(38, 28, 59, 0.5),
    #290344,
    #5f11a2
  );
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05),
    linear-gradient(to bottom right, #8046cc, #5f11a2, #360244);
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.box h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.box p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.box strong {
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 768px) {
  #about-text,
  .about-description {
    padding: 0 10px;
  }

  #about-text {
    max-width: 90%;
  }

  .club-logo {
    width: 120px;
  }

  .about-description {
    font-size: 18px;
  }

  .statements {
    padding: 25px 15px;
    gap: 20px;
  }

  .box {
    padding: 20px;
    max-width: 95%;
    margin-bottom: 20px;
  }

  .box h2 {
    font-size: 22px;
  }

  .box p {
    font-size: 16px;
  }

  .officers-heading {
    font-size: 28px;
    white-space: nowrap;
  }

  /* Officers Page Mobile Responsiveness */
  #leads-component,
  #deptHeads-component,
  #committeeHeads-component {
    width: 100%;
    max-width: none;
    padding: 10px 0;
  }

  .leads-heading,
  .deptHeads-heading,
  .committeeHeads-heading {
    font-size: 32px;
    text-align: center;
    padding: 0 40px;
  }

  #leads-cards,
  #deptHeads-cards,
  #committeeHeads-cards {
    display: flex;
		flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 0 calc(50vw - 140px);
    margin-top: 0;
    scroll-snap-type: x mandatory;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
		padding-top: 50px;
		justify-content: normal;
  }

  #leads-cards::-webkit-scrollbar,
  #deptHeads-cards::-webkit-scrollbar,
  #committeeHeads-cards::-webkit-scrollbar {
    display: none;
  }

  #leads-cards,
  #deptHeads-cards,
  #committeeHeads-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .officer-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }
	
	.officers-text {
		padding: 0 40px;
	}
}

@media (max-width: 480px) {
  .club-logo {
    width: 100px;
  }

  .about-description {
    font-size: 16px;
  }

  .statements {
    padding: 20px 10px;
    gap: 15px;
  }

  .box {
    padding: 15px;
    margin-bottom: 15px;
  }

  .box h2 {
    font-size: 20px;
  }

  .box p {
    font-size: 15px;
  }

  .officers-heading {
    font-size: 22px;
    white-space: nowrap;
  }

	.officers-description {
    font-size: 16px;
	}

  /* Officers Page Mobile Responsiveness - Smaller screens */
  #leads-component,
  #deptHeads-component,
  #committeeHeads-component {
    padding: 30px 0;
  }

  #leads-component {
		margin-top: 50px;
	}

  .officer-card {
    flex: 0 0 250px;
    scroll-snap-align: center;
  }

  .leads-heading,
  .deptHeads-heading,
  .committeeHeads-heading {
    font-size: 28px;
    padding: 0 30px;
  }

  #leads-cards,
  #deptHeads-cards,
  #committeeHeads-cards {
    gap: 15px;
    padding: 50px calc(50vw - 125px) 0 calc(50vw - 125px);
  }
}


/* Events CSS */
/* Uses unified background classes: .page-with-background, .bg-gradient, .bg-cloud-left, .bg-cloud-right */

.events-section {
  margin-top: 10px;
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 80px 100px 80px;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.events-section h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 20px;
  color: white;
}

/* Upcoming Events Styles */
#upcoming-events-list {
  position: relative;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upcoming-events-scroll {
  flex: 1;
  overflow: hidden;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upcoming-events-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
  min-width: 100%;
  max-width: calc(3 * 320px + 2 * 20px + 40px);
	scroll-snap-type: x mandatory;
}

.upcoming-events-cards::-webkit-scrollbar {
  display: none;
}

.upcoming-event-card {
  flex: 0 0 500px;
  height: 500px;
	min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 0;
  border: 3px solid rgba(187, 187, 187, 0.452);
  overflow: hidden;
  position: relative;
	scroll-snap-align: center;
}

.upcoming-event-card.coming-soon {
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Common Event Card Styles */
.event-poster {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.held-event-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  padding: 15px;
  background: rgba(26, 15, 46, 0.9);
  border-radius: 0 0 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.event-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
  color: white;
  font-family: "Amazon Ember Display", sans-serif;
}

.event-description {
  font-size: 1rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-family: "Amazon Ember Display", sans-serif;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.event-tag {
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: "Amazon Ember Display", sans-serif;
}

.event-poster-fallback {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60%;
  text-align: center;
	padding: 50px;
}

.fallback-title {
  font-size: 1.2rem;
  margin: 0;
}

/* Upcoming Events Specific Styles */
.upcoming-event-card.coming-soon .event-card-content {
  background: rgba(26, 15, 46, 0.103);
}

.upcoming-event-card.coming-soon .event-title {
  color: rgba(255, 255, 255, 0.9);
}

.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 40px 20px;
}

.coming-soon-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.coming-soon-content .event-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow {
  background: rgba(255, 255, 255, 0);
  border: none;
  color: white;
  font-size: 3.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  transform: scale(1.1);
}

.scroll-arrow:active {
  transform: scale(0.95);
}

/* Held Events Styles */
.held-events-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.held-event-card {
  display: flex;
  background: transparent;
  border-radius: 15px;
  border: 3px solid rgba(187, 187, 187, 0.452);
  overflow: hidden;
  min-height: 300px;
}

.held-event-left {
  flex: 0 0 60%;
  padding: 30px 300px 30px 100px;
  background: linear-gradient(135deg, #2a1f4f 0%, #1a0f2e 100%);
  display: flex;
  align-items: center;
}

.held-event {
  width: 100%;
}

.held-event-right {
  flex: 0 0 40%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.held-event-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.held-event h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
  color: white;
}

.held-event .event-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

#events-page {
  height: auto;
}

/* Responsive Design */
@media (max-width: 1280px) {
  .upcoming-event-card {
    flex: 0 0 400px;
    width: 400px;
    height: 400px;
  }
  
  .upcoming-events-cards {
    max-width: calc(3 * 200px + 2 * 20px + 40px);
  }
  
  .event-title {
    font-size: 1rem;
  }
  
  .event-description {
    font-size: 0.8rem;
    overflow: ellipsis;
  }
  
  .event-tag {
    font-size: 0.65rem;
  }

  .held-event-left {
    padding: 30px 50px 30px 50px;
  }

  .held-event .event-description {
    font-size: 0.75rem;
  }

  .events-section h2 {
    font-size: 2.4rem;
  }

  .events-header h2 {
    font-size: 2.4rem;
  }

  .events-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 980px) {
  .scroll-arrow {
    display: none;
  }
  
  .upcoming-events-cards {
		padding: 0 calc(50vh - 200px);
  }

	.events-section {
  	align-items: center;
	}
}

@media (max-width: 768px) {
	.events-section {
		padding: 40px 40px 100px 40px;
		text-align: center;
	}

	.held-event-card {
		flex-direction: column-reverse;
	}

	.held-events-list {
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.upcoming-event-card {
		flex: 0 0 300px;
	}
}

/* FOOTER STYLES */
.footer {
  background: linear-gradient(to bottom, #0f0b26 0%, #1e003d 100%);
  color: var(--white);
  padding: 3rem 1rem 1rem 1rem;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: calc(100% - 8rem);
  max-width: calc(1400px - 8rem);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-family: "Amazon Ember", sans-serif;
  font-weight: bold;
}

.footer-section h4 {
  font-size: 1.1rem;
  color: #bbaffd;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo-text h3 {
  font-size: 1.3rem;
  margin: 0;
  font-family: "Amazon Ember Display", sans-serif;
}
.footer-logo-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #bbaffd;
  font-family: "Amazon Ember Display", sans-serif;
}

.footer-tagline {
  color: #bbaffd;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-text {
  font-family: "Amazon Ember Display", sans-serif;
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.8rem 1rem;
  max-width: 300px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-family: "Amazon Ember Display", sans-serif;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #bbaffd;
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 4rem 0 4rem;
  text-align: left;
  font-family: "Amazon Ember Display", sans-serif;
}

.footer-bottom p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1rem 1rem;
  }

  .footer::before {
    display: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 2rem 1rem;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-logo img {
    width: 70px;
    height: 70px;
  }

  .footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-section {
    text-align: center;
  }

  .footer-text {
    display: none;
  }

  .footer-bottom {
    padding: 1rem 1rem 0 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-links ul {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: none;
    gap: 0.8rem;
  }

  .social-icons {
    justify-content: center;
    gap: 0.8rem;
  }

  .social-icons a {
    padding: 0.4rem;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1024px) {
  .footer::before {
    width: calc(100% - 12rem);
    max-width: calc(1400px - 12rem);
  }

  .footer-container {
    grid-template-columns: 2fr 1fr;
    padding: 0 6rem 2rem 6rem;
    gap: 6rem;
  }

  .footer-bottom {
    padding: 1rem 6rem 0 6rem;
  }

  .footer-links {
    justify-self: end;
    text-align: left;
  }

  .footer-links ul {
    max-width: none;
    width: 100%;
    justify-content: end;
  }
}

@media (min-width: 1440px) {
  .footer::before {
    width: calc(100% - 16rem);
    max-width: calc(1400px - 16rem);
  }

  .footer-container {
    padding: 0 8rem 2rem 8rem;
    gap: 8rem;
  }

  .footer-bottom {
    padding: 1rem 8rem 0 8rem;
  }
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.social-icons a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  display: block;
}

.social-icons a:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(260deg);
}

.social-icons a[href*="facebook"]:hover {
  background: rgba(66, 103, 178, 0.2);
  border-color: rgba(66, 103, 178, 0.4);
  box-shadow: 0 8px 25px rgba(66, 103, 178, 0.3);
}

.social-icons a[href*="facebook"]:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(220deg);
}

.social-icons a[href*="instagram"]:hover {
  background: linear-gradient(
    45deg,
    rgba(225, 48, 108, 0.2),
    rgba(255, 204, 0, 0.2)
  );
  border-color: rgba(225, 48, 108, 0.4);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-icons a[href*="instagram"]:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(300deg);
}

.social-icons a[href*="linkedin"]:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: rgba(0, 119, 181, 0.4);
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.social-icons a[href*="linkedin"]:hover img {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(200deg);
}

.social-icons a[href*="github"]:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.social-icons a[href*="github"]:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
    gap: 0.8rem;
  }

  .social-icons a {
    padding: 0.4rem;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }
}
