body {
  margin: 0;
  padding: 0;
}

nav{
position: fixed;
}
.background-wrapper {
  min-height: 100vh;  /* ensures full screen */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes footer to bottom */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.landing-container {
  height: 100%;
  padding-top: 56.25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
   flex-grow: 1;
  padding-bottom: 0;
  margin-bottom: 0;
}



.logo {
  position: fixed;
  top: -95px;
  left: -20px;
  width: 240px;
  height: auto;
}

.main-content{
  position:absolute;
  top:550px;
  left: 0px;
  width: 150px;
  height: auto;
}
.slogan {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 80px;
  margin-left: 20px;
  position: relative;
  top: -475px;
  left: -3px;
  
}

/*Search Bar*/

.landing-search-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;    
  width: 80%;
}
.search-bar{
  border-radius: 70px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  margin: 0 auto;
  top: -500px;
  left: 80px;
  align-items: center;
  padding: 5px 10px;
  display: flex;
  

}
.search-bar input {
  background: transparent;
  flex: 1;
  border: 0;
  outline: none;
  padding: 5px 2px;
  font-family: "Roboto", sans-serif;
  color: black;
  font-size: 16px;
  height: 45px;
  font-weight: 1000;
  text-transform: uppercase;
  

}
.search-bar input::placeholder{
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: black;
  padding-left: 10px;
  font-weight: 1000;

}
.search-button img{
  width: 24px;
  height: 24px;
}
.search-button{
  border: 0;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  background: none;
}

/*Menu Button and Dropdown*/

.menu-button-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  width: 25px;
}

.menu-button {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}

.menu-button img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

.menu-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-content.active {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}

.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.menu-content li {
  margin-bottom: 10px;
  z-index: 1000;
}

.menu-content a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  z-index: 1000;
}



/*Profile Button*/

.profile-button-container{
  position: fixed;
  top: 20px;
  right: 50px;
  z-index: 999;
}

.profile-button{
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}

.profile-button img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.more-info{
  background-color: black;
}

.info-boxes {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #e0e0e0;
  padding: 20px;
}

.info-box {
width: 300px;
padding: 10px;
margin: 0 10px;
background-color: #000000;
border: 2px solid #ffffff; /* Added '2px solid' for border style */
border-radius: 10px;
text-align: center;
transform: translate(7%, 0%);

}

.info-box h2 {
color: #ffffff;
margin-bottom: 10px;
font-size: 30px;
font-family: "Roboto", sans-serif;
font-weight: 1000;
}

.info-box p {
color: #ffffff;
font-size: 14px;
font-family: "Roboto", sans-serif;
}


.register-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.register-button {
  background-color: rgb(0,0,0,0.88);
  color: #ffffff;
  border-radius: 70px;
  width: 250px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  padding: 22.5px 90px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: -500px;
  left: 66px;
  text-decoration: none;
  white-space: nowrap;
}

.register-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}




.register-button:hover {
  background-color: #333333;
}
.search-bar, .register-button {
  box-sizing: border-box;
}


/* === Footer Styles (Simplified & Responsive) === */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  border-top: 1px solid #222;
  margin-top: 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-left img {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 0;
  font-size: 13px;
  color: #bbb;
}

.footer-right {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 20px;
}

.footer-right a {
  color: #bbb;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #fff;
}


/* Gradient Section */
.info-section {
  background: linear-gradient(to bottom, #800000, #000000);
  color: #fff;
  padding: 100px 20px;
  font-family: "Roboto", sans-serif;
}

.info-content {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.info-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
}

.partners {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}


/* Reveal animation */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.partners img {
  height: 80px;         
  width: auto;
  background: transparent;
  opacity: 0.95;
}





.about-link-button {
  margin: 0px auto 40px auto;       /* top, left/right auto, bottom */
  display: block;                    /* allow centering with margin auto */
  background-color: #ffffff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Roboto", sans-serif;
  text-align: center;
  width: fit-content;
}


.about-link-button:hover {
  background-color: #ddd;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}





.scroll-down-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: white;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}




@media (max-width: 600px) {
  .partners img {
    height: 50px;
  }
}









  
