body {
  margin: 0;
  font-family: "Gothic A1", sans-serif;
  color: #272727;
}

/* A lot of this is terrible and needs refactoring */

.landing-page {
  background-color: white;
  width: 100%;
  overflow: hidden;
}

.top-bar {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.085);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.top-bar_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
}

.navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.navigation li {
  position: relative;
}

.navigation a {
  text-decoration: none;
  font-family: "Gothic A1", sans-serif;
  font-size: 20px;
  color: #2b2b2b;
  display: inline-block;
}

.banner {
  background-color: #094a62;
  height: 964px;
  overflow: hidden;
  position: relative;
  
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  z-index: 10;
  
}

.banner-logo {
  width: 350px;
  object-fit: contain;
  margin-right: 50px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));

}

.banner-title {
  font-family: "Monomaniac One", sans-serif;
  font-size: 96px;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 0.5px black;
  filter: drop-shadow(-2px 0px 0px #ffd800) drop-shadow(0px 2px 0px #ffd800) drop-shadow(0px -2px 0px #ffd800) drop-shadow(0.5px 2px 0px #ffd800) drop-shadow(-3px 2.5px 0px #ffd800) drop-shadow(0.5px -2px 0px #ffd800) drop-shadow(-3px -2px 0px #ffd800) drop-shadow(-2px 0px 0px #006E7D) drop-shadow(0px 2px 0px #006E7D) drop-shadow(0px -2px 0px #006E7D) drop-shadow(-2px 2px 0px #006E7D) drop-shadow(-2px -2px 0px #006E7D) drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.2));
}

.content_section {
  color: white;
  background-color: #006E7D;
  position: relative;
  padding: 100px 0;
  text-align: left;
  height: 600px;
}

.content_section .content {
  
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content_section .content_title {
  font-family: "Monomaniac One", sans-serif;
  font-size: 96px;
  margin: 0 0 20px;
}
h2 {
  font-family: "Monomaniac One", sans-serif;
  font-size: 48px;
  margin: 0 0 20px;
}

.content_text {
  font-size: 24px;
  margin: 0 0 20px;
  max-width: 695px;
}

body > .content_text {
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  max-width: 1200px;
  display: block;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border-radius: 40px;
  padding: 10px 20px;
  color: #248db4;
  font-size: 32px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
  width: 300px;
  height: 52px;
  position: relative;
}

.learn-more:hover {
  transform: scale(1.1);
}

#sponsor_button {
  background-color: 248db4;
  color: white;
}

.arrow {
  font-size: 50px;
  margin-left: auto;
  margin-top: -10px;
  line-height: 1;
}

.image-frame {
  position: absolute;
  display: block;
  right: 110px;
  top: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 10px rgba(255, 255, 255, 0.1), 20px 20px rgb(255, 255, 255);
  height: 600px;
  width: 500px;
  overflow: hidden;
  object-fit:contain;
  object-position: 50% 50%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.latest {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  display: grid;
  place-items: center;
  width: 100%;
}

.latest_title {
  color: #2b2b2b;
  font-size: 96px;
  margin-bottom: 80px;
  font-family: "Monomaniac One", sans-serif;
}

.card {
  color: #2b2b2b;
  background-color: white;
  border:#00a5bb 5px solid;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(9.43, 74.44, 98.08, 0.2);
  width: 40%;
  margin: 0;
  overflow: hidden;
  text-align: left;
  height: 450px;
  box-sizing: border-box;
  padding: 0;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.1);
  transform: scale(1.05);
}

.card img {
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 20px;
}

.card_content {
  padding: 20px;
}

.card h2 {
  font-size: 24px;
  margin: 0 0 10px;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: flex-start;
}

.feature-card {
  color: #2b2b2b;
  background-color: white;
  border:#00a5bb 5px solid;
  box-shadow: 0px 0px 20px rgba(9.43, 74.44, 98.08, 0.2);
  border-radius: 10px;
  margin: 0;
  width: 50%;
  overflow: hidden;
  padding: 20px;
  text-align: left;
  height: 450px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.card h2 , .feature-card h2 {
  color: #006E7D;
  text-decoration: underline 2px;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card img {
  box-shadow: 0px 0px 10px rgba(3, 109, 117, 0.1);
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 20px;
}

.feature-card h2 {
  font-size: 24px;
  margin: 0 0 10px;
}

.feature-card p {
  font-size: 16px;
}

.bottom-bar {
  background-color: #006E7D;
  color: white;
  padding: 15px 0;
  text-align: center;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

.bottom-bar p {
  margin: 0;
  font-size: 18px;
}

.social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.decorative-rectangles {
  position: absolute;
  width: 140px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 20px;
  padding: 20px 0;
  padding-right: 0;

}

.rect {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 60px;
  border-radius: 20px 0 0 20px;
}

.rect-one {
  width: 90px;
  background-color: #00a5bb;
}

.rect-two {
  width: 110px;
  background-color: #ffd800;
}

.rect-three {
  width: 140px;
  background-color: #ffffff;
}

.hamburger-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  text-decoration: none;
}

.hamburger-icon span {
  width: 25px;
  height: 3px;
  background-color: #2b2b2b;
  border-radius: 2px;

}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;

}

.dropdown-content a {
  color: #2b2b2b;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

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

.icon {
  display: none;
  text-decoration: none;
  color: #2b2b2b;
}



/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 0;
  }

  .top-bar_container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    width: 70px !important;
    height: 35px !important;
  }

  .hamburger-icon {
    display: flex;
  }

  .navigation {
    width: 100%;
    position: absolute;
    top: 55px;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.085);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .navigation.active {
    max-height: 500px;
  }

  .navigation ul {
    flex-direction: column;
    gap: 0;
    padding: 15px 0;
  }

  .navigation li {
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
    background-color: #f5f5f5;
    border-left: 3px solid #00a5bb;
  }

  .navigation a {
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    width: 100%;
  }

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

  .dropdown-content a {
    padding: 12px 30px;
    font-size: 14px;
  }

  .banner-title {
    filter:none !important;
    -webkit-text-stroke: 0 !important;
  }
  .banner {
    height: 300px;
    margin-top: 50px;
  }

  .banner-img {
    width: 100%;
    object-fit: cover;
  }

  .banner-overlay {
    flex-direction: column;
    gap: 20px;
  }

  .banner-logo {
    width: 60%;
    height: auto;
    margin-bottom: -40px;

    filter: none !important
  }

  .banner-title {
    font-size: 48px;
    text-align: center;
  }

  .content_section {
    padding: 40px 0;
    height: auto !important;
    text-align: center;
  }

  .content_section .content {
    padding: 0 20px;
  }

  .content_section .content_title {
    font-size: 36px;
    margin: 20px 0 15px;
  }

  .content_section .content_text {
    font-size: 14px;
    margin: 0 0 20px;
    max-width: 100%;
  }

  .learn-more {
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    padding: 8px 15px;
    height: auto;
  }

  .arrow {
    font-size: 36px;
    margin-top: -5px;
  }

  .image-frame {
    box-shadow: 0px 0px 30px 5px rgba(255, 255, 255, 0.1);
    position: static;
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 30px auto 0;
    right: auto;
    top: auto;
  }

  .image-frame img {
    object-fit: cover;
  }

  .latest_title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .feature-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .card {
    width: 100%;
    height: auto;
  }

  .feature-card {
    width: 100%;
    height: auto;
  }

  .card img {
    height: 150px;
  }

  .feature-card img {
    height: 150px;
  }

  .decorative-rectangles {
    display: none !important;
  }

  .bottom-bar {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }

  .bottom-bar p {
    font-size: 14px;
  }

  .social-media {
    width: 100%;
    justify-content: center;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .content_text {
    font-size: 14px;
  }
  #get_involved {
    margin-top:50px;
  }

}