/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --grey: #8d8397;
  --white: #ffffff;
  --blue: #00aeef;
  --purpleHover: #a71f6e;
  --purpleMain: #ec008c;
  --darkFade: linear-gradient(
    30deg,
    var(--purpleMain) 0%,
    var(--purpleHover) 40%,
    var(--blue) 100%
  );
  --lightFade: linear-gradient(30deg, var(--blue), var(--purpleMain), var(--blue));
  --textContentSmall: clamp(0.6rem, 3vw, 1.2rem);
  --textContent: clamp(1rem, 2vw, 2rem);
  --textHeader: clamp(1.6rem, 3vw, 2rem);
  --textHeader2: clamp(1.7rem, 3vw, 2.4rem);
  --lineHeight: clamp(1.7rem, 3vw, 2rem);
  --lineHeightHeader: clamp(1.7rem, 3vw, 2.1rem);
  --borderWidth: clamp(0.1rem, 2vw, 0.3rem);
}



body, html {
  height: 100%;
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 1.5px;
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}


.content{
  margin-top: var(--navbar-height, 15vh); /* Use dynamic navbar height */
  width: 100%;
  height: auto;
}

/* MAIN CONTAINER */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-align: center;
}

.main-logo img {
  width: 14vw;
  margin: -1vw 0 0 -4vw;
  height: auto;
}

/* SCROLL SECTION */

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 5px 2px rgba(78, 3, 47, 0.3), 0 0 15px 5px rgba(78, 3, 47, 0.3);
  }
  50% {
    box-shadow: 0 0 10px 5px rgba(78, 3, 47, 0.3), 0 0 25px 10px rgba(78, 3, 47, 0.3);
  }
}

.scrollSection {
  background:  linear-gradient(
    var(--purpleMain) 0%,
    var(--blue) 50%,
    var(--purpleMain) 100%
  );

  height: 1vw;
  margin-top: -1vw;
  width: 100%;
  /* Pulsing animation */
  animation: pulseGlow 3s infinite;
  z-index: 999;
}

a {
  text-decoration: none;
  color: var(--white);
}



/* SOCIAL ICONS */
.social-icons {
  text-align: center;
  padding: 20px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
}

.social-icons .icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  filter: invert(1); /* Invert black to white */
}

.social-icons .icon:hover {
  transform: scale(1.1);
  filter: invert(1); /* Invert black to white */
}

/* NAVBAR & BANNER */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--black);
  padding: 2vh 2vw;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  height: 15vw;
  max-height: 20vh;
  min-height: 60px;
}


.nav-logo img {
  width: 20vw;
  height: auto;
  justify-self: left;
}

.nav-links {
  list-style: none;
  display: flex;
  font-size: var(--textContentSmall);
  gap: 2vw;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--purpleHover);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--white);
  border-radius: 5px;
}

/* Mobile Menu */
.mobile-menu.open {
  display: flex;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 1rem 0;
}

.mobile-menu ul li a {
  font-size: var(--textContent);
  color: var(--white);
  text-decoration: none;
}

/* BANNER */
.banner-container {
background: var(--black);
width: 100vw;
}

.banner-section {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}

.banner1, .banner2 {
  display: flex;
  align-items: center;
  margin: 2vw 0;
}

.banner1 img, .banner2 img {
  width: 10vw;
  margin: 0 2vw;
  max-width: 100%;
}

.banner-containerBMS {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 1vw;
}

.banner3 img{
  width: 6vw;
  max-width: 80px;
  max-width: 100%;
}


.thankYou{
  background: linear-gradient(71deg, var(--black), var(--purpleMain), var(--black));
  margin-top: var(--navbar-height, 15vh);
  width: 100vw;
  height: 100vh;
  align-content: center;
  padding-bottom: 20vw;
  font-size: var(--textContent);
  padding-left: 12vw;
  padding-right: 12vw;
}
