body {
	margin: 0rem;
  background: var(--bg-url) no-repeat center center;
  background-size: cover;
  font-family: "Gabarito", sans-serif;
  color: white;
  text-align: center;
}

  .hic-container {
    position: relative;
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
  }

  .hic-slides {
    position: relative;
    width: 500px;
    padding-top: 100%; /* 16:9 Aspect Ratio */
    height: auto;
    overflow: hidden;
    border-radius: 8px;
  }

  .hic-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
  }

  .hic-slide.active {
    opacity: 1;
    visibility: visible;
  }

  .hic-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hic-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
  }
  .hic-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .hic-btn.prev { left: 10px; border-radius: 5px 0 0 5px; }
  .hic-btn.next { right: 10px; border-radius: 0 5px 5px 0; }

  .hic-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
    padding: 1.5rem 1rem 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    box-sizing: border-box;
    z-index: 5;
  }

#sponsor {
  background-color: #C8102E;
  border-radius: 8px;
  padding: 6px 10px;
  transition-duration: 0.2s;
}

#sponsor:hover {
  background-color: #0067B1;
}

#button {
  background-color: #C8102E;
  border-radius: 8px;
  padding: 6px 10px;
  transition-duration: 0.2s;
  text-decoration: none;
  color: white;
  margin: auto;
}

#button:hover {
  background-color: #0067B1;
}

.post-content {
  height: 100vh;
}

.alert-text {
  color: white;
  font-family: "Teko", sans-serif;
  font-size: clamp(1rem, 0.7115rem + 1.2821vw, 2.25rem);
}

#site-alert-bar {
  background:#c8102e;
  margin-top: 2rem;
  padding: 1rem;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 1;
}

.content-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

.post-image {
  width: 100%;
}

.split-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  background-color: black;
}

.split-container-contents {
  display: flex;
  width: 40%;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.showcase-object {
  position: relative;
  width: 40vw;
}

.showcase-overlay-text {
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.125rem, 1.0739rem + 0.2273vw, 1.25rem);
  text-align: center;
  padding: 3vw;
}

.main-content {
  color: white;
  text-align: center;
  font-size: 1.5rem;
}

.main-content-title {
  color: white;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  padding-top: 10vh;
  text-shadow: 0px 6px 4px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  margin: auto;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1rem;
  color: white;
  background-color: black;
  padding: 3rem 0 3rem;
  width: 100%;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  width: 40%;
  align-items: center;
}
.social-icon {
  display: block;
  width: 2rem;
  height: 2rem;
}

hr {
  width: 40%;
  margin: 1rem auto;
  background-color: black;
}

.parallax-bg {
  background-image: url("/images/PeregrineExplorer.jpg");
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: background-position;
}

.hero-image {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 80vw;
  margin: 2vh auto 0px;
}

.showcase-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #000000;
  padding-top: 5vh;
  padding-bottom: 5vh;
  justify-content: space-evenly;
}

.showcase-image {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 40vw;
  margin: 0px auto 0px;
  filter: brightness(70%);
}

.showcase-text {
  color: white;
  font-size: clamp(1.944rem, 1.7405rem + 0.9044vw, 2.4414rem);
  text-align: center;
  font-family: "Teko", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  margin: 0px auto 2vh;
}

.headline-container {
  height: 100vh;
}

.headline {
	text-align: center;
	font-size: 8rem;
	font-family: "Teko", sans-serif;
	font-weight: 600;
	margin: 5rem 0 0;
  color: #0067B1;
  text-shadow: 0px 6px 4px rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
}

.headline-tag {
	text-align: center;
	font-size: 3rem;
	font-family: "Teko", sans-serif;
	font-weight: 400;
	margin-top: -20px;
  color: #C8102E;
  text-shadow: 0px 3px 2px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

.headline-button-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  margin: 0 auto;
}

.headline-button {
  color:#fff;
  display: flex;
  background-color: #C8102E;
  padding: 0.8rem;
  border-radius: 5px;
  font-family: "Gabarito", sans-serif;
  font-size: clamp(1.125rem, 1.0739rem + 0.2273vw, 1.25rem);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 6px 4px rgba(0, 0, 0, 0.7);
  transition-duration: 0.2s;
}

.headline-button:hover {
  background-color: #0067B1;
}

.navbar {
  background: none;
  color: #fff;
  padding: 2rem 5rem 0;
  font-family: "Gabarito", sans-serif;
}

.navbar-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: block;
  height: 40px;
  width: auto;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-link {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-link:hover {
  color: #fff;
}

/* Dropdown hidden by default */
.dropdown {
  display: none;
  position: absolute;
  top: 100%; /* below parent */
  left: 0;
  background: #333;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 150px;
  z-index: 1000;
}

/* Show dropdown when hovering over parent */
.navbar-item.has-dropdown:hover .dropdown {
  display: block;
}

.navbar-item.has-dropdown:active .dropdown {
  display: block;

}

.navbar-item.has-dropdown {
  position: relative;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ddd;
  text-decoration: none;
}

.dropdown li a:hover {
  background: #444;
  color: #fff;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
  display: block;
}

.hamburger {
  display: none;
}

.donation-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10%;
}

a[href^="mailto:"]
{ 
  color: #C8102E;
  text-decoration: none;
  transition: 0.2s;
  text-shadow:0px 4px 6px black;
}

a:hover[href^="mailto:"]
{
  color: #0067B1;
}

@media (max-width: 950px) {
  .showcase-container {
    flex-direction: column;
    align-items: center;
    padding: 0% 0% 8vh;
  }
  .showcase-object {
    width: 90vw;
    padding-top: 8vh;
  }
  .showcase-image {
    width: 90vw;
  }
  .hamburger {
    display: block;
    color: black;
    background-color: #C8102E;
    width: 2rem;
    height: 2rem;
    border-radius: 5px;
    border: none;
    transition-duration: 0.5s;
  }
  
.hamburger.show {
  background-color: #0067B1;
  transform: rotate(180deg);
}

  .navbar-menu {
    overflow: hidden;
    max-height: 0;
    flex-direction: column;
    flex-basis: 100%;
    padding-top: 2rem;
    align-items: end;
    transition: max-height 0.5s ease-in-out;
  }
  .navbar-menu.show {
    max-height: 300px;
    transition: max-height 0.5s ease-in-out;
  }
  .navbar-container {
    flex-wrap: wrap;
  }

  .navbar {
    background: linear-gradient(to top, transparent 0%, black 100%);;
    padding: 2rem 2rem;
  }

  .headline {
    font-size: 4rem;
  }

  .headline-button-container {
      width: 90%;
  }

  .footer-info {
    flex-direction: column;
  }

  .footer-menu {
    margin: 5vh;
  }
  
  .split-container {
    flex-direction: column;
  }

  .split-container-contents {
    width: 90%;
  }

  .content-container {
    width: 85%;
  }

  .donation-buttons {
    width: 70%;
  }
  .navbar .dropdown {
    display: none !important;
    position: static;
  }
  .navbar .has-dropdown > a {
    pointer-events: auto;
  }

  .navbar li:hover > .dropdown {
    display: none !important;
  }
}