.parallax-two {
  background-image: url("/static/necysc_app/images/home/home_parallax_two.jpg");
  min-height: 500px;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-one {
  background-image: url("/static/necysc_app/images/home/home_parallax_one.jpg");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-device-width: 1366px) {
  .mobileparallax {
    background-attachment: scroll;
  }
}
/* Reset global margin and padding to match old site */
html, body {
  margin: 0;
  padding: 0;
}

/* Hind font-face fallback */
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 400;
  src: local('Hind'), url('https://fonts.gstatic.com/s/hind/v17/5aU19_a8oxmIfMJaER2SjQ.woff2') format('woff2');
  unicode-range: U+000-5FF;
}
/* Match old/index.html hero video and fallback image behavior */
.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-video {
  display: block;
}
.hero-image {
  display: none;
  background-image: url("/static/necysc_app/images/hero/about_hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 776px) {
  .hero-video {
    display: none;
  }
  .hero-image {
    display: block;
  }
}
/* Index page hero video and fallback image */
.hero-video {
  display: block;
}
.hero-image {
  display: none;
  background-image: url("/static/necysc_app/images/hero/about_hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 776px) {
  .hero-video {
    display: none;
  }
  .hero-image {
    display: block;
  }
}
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


body {
  font-family: "Hind", sans-serif;
}

h1,
h2,
h3 {
  color: #4e598c;
}

#faqregistration, #faqleavingcamp, #faqhealth, #faqpacking,
#day, #ea, #why-join-us, #cit, #counselor, #ra, #ops, #committee,
#pod, #meettheteam, #sponsors {
  scroll-margin-top: 100px;
}
#day, #cit, #counselor, #ra, #ops, #committee {
  scroll-margin-top: 150px;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 1;
}

.hero-section .position-relative {
  z-index: 2;
}

.btn-purple {
  background-color: #4e598c;
  color: #f9c784;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: none;
}

.btn-purple:hover {
  background-color: #f9c784;
  color: #ffffff;
}

.btn-yellow {
  background-color: #f9c784;
  color: #4e598c;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  border: none;
}

.btn-yellow:hover {
  background-color: #4e598c;
  color: #ffffff;
}

.accordion-item .accordion-button:not(.collapsed) {
  background-color: #4e598c; /* Darker purple when open */
  color: #ffffff; /* White text for contrast */
}

.bg-purple {
  background-color: #4e598c;
}

.text-purple {
  color: #4e598c;
}

.border-purple {
  border-color: #4e598c;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.big-icon {
  font-size: 40px;
}

.floating {
  font-size: 50px; /* You can adjust the size according to your preference */
  animation: floatAnimation 1s ease-in-out infinite; /* Adjust the duration and timing function as needed */
}

a {
  font-weight: bold;
  text-decoration: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  top: 100%;
}

.dropdown-content a {
  color: #4e598c;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #4e598c;
  color: #f9c784;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 1000px) {
  .dropdown {
    display: none;
  }

  .dropdown-content {
    display: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }
}

.navbar-link {
  color: #4e598c;
  transition: color 0.3s ease;
  padding: 10px 20px;
}

.navbar-link:hover {
  color: #f9c784;
  background: #4e598c;
  transition: color 0.3s ease;
  border-radius: 50px;
}

.active {
  color: #f9c784;
  background: #4e598c;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
}

.btn-login {
  background-color: #4e598c;
  color: #f9c784;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
}

.btn-login:hover {
  background-color: #f9c784;
  color: #ffffff;
}

.btn-padding {
  padding: 10px 15px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  background: #f9c784;
  color: #4e598c;
  transition: all 0.3s ease;
}

.btn-padding:hover {
  background-color: #4e598c;
  color: #ffffff;
}

.col-auto {
  display: flex;
  align-items: center;
}

img {
  height: 4rem;
  max-width: 100%;
}

#logobutton {
  background-color: #4e598c;
  transition: all 0.3s ease;
}

#logobutton:hover {
  background-color: #f9c784;
  color: #ffffff;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #4e598c;
}

.nav-links {
  display: flex;
  gap: 15px;
}

@media (max-width: 1200px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 10px;
    z-index: 1000;
    padding-left: 25px;
    padding-right: 50px;
  }

  /* full width menu */
  .navbar-link {
    width: 100%;
    text-align: center;
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.optional {
  color: gray;
  font-style: italic;
}

.white-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.white-link:hover {
  color: #cccccc;
}

.welcome-title {
  color: white;
}

.glow {
  transition: box-shadow 0.3s ease-in-out;
}

.glow:hover {
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.15); /* Adjust the glow effect */
}

/* .a {
  font-weight: bold;
  text-decoration: none;
  color: black;
} */

a {
  color: #f9c784;
}
