@font-face {
  font-family: "Feu de camp Timber";
  src: url("../fonts/feudecamp-timber-webfont.woff2") format("woff2");
  font-display: block;
}


#header-top-bottom-container {
  margin: 0 auto;
  width: 100%;
}

.header-top {
  background: #ff7482; /* Light coral/salmon pink */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.hamburger-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 2rem;
  top: 45%;
  transform: translateY(-50%);
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  transform: translateY(-50%) scale(1.05);
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background: #333;
}

.social-icons {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  position: absolute;
  right: 2rem;
}

.social-icons a {
  margin: 0;
  padding: 0 0 0 0.5rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

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

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0); /* Make icons black */
}

/* Media query for social-icons */
@media (max-width: 768px) {
  .social-icons {
    display: none;
  }
}

.header-bottom-nav {
  background: black;
  position: relative;
  padding: 1rem 0;
}

/* Text-based Secondary Navigation Bar */
.text-nav {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

/* Text-based navigation links */
.text-nav .text-nav-link {
  font-family: "Feu de camp Timber", serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  color: #fff;
}

.text-nav .text-nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Text navigation link colors */
.text-nav-why {
  background: linear-gradient(90deg, #ec0caa, #e2e60d, #3496c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ec0caa; /* Fallback color */
}

.text-nav-team {
  color: #fa2dfd !important;
}

.text-nav-ethos {
  color: #44fe7a !important;
}

.text-nav-events {
  color: #2ff5ff !important;
}

.text-nav-involved {
  color: #ffb344 !important;
}

.text-nav-press {
  color: #FF4545 !important;
}

.text-nav-insider {
  color: #d674ff !important;
}

/* Mobile menu styles - nav menu */
@media (max-width: 768px) {
  .header-bottom-nav {
    height: 50%;
  }
  .tex-nav-link, .text-nav-why, .text-nav-team, .text-nav-ethos, .text-nav-events, .text-nav-involved, .text-nav-press, .text-nav-insider {
    display: none;
  }

  /* Mobile-specific styles for secondary nav */
  .secondary-nav {
    width: 100%;
    left: -100%;
  }

  .secondary-nav.nav-open {
    left: 0;
  }
}


/* Secondary Navigation Menu */
.secondary-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #000;
  padding: 2rem 1rem;
  transition: left 0.3s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding-top: 4rem;
  /* Debug: ensure content is visible */
  color: #fff;
  /* Ensure menu items are visible */
  min-height: 100vh;
}

/* Menu header with close button */
.secondary-nav::after {
  content: "×";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  transition: all 0.3s ease;
}

.secondary-nav::after:hover {
  color: #ff7a75;
  transform: scale(1.1);
}

/* Backdrop overlay when menu is open */
.secondary-nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.secondary-nav.nav-open::before {
  opacity: 1;
}

/* Add a subtle animation to menu items */
.secondary-nav a {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  display: block !important;
  width: 100% !important;
  /* Debug: ensure visibility */
  visibility: visible !important;
  color: #fff !important;
  background: transparent !important;
  margin: 0.5rem 0 !important;
  padding: 1.5rem 1rem !important;
  position: relative !important;
  overflow: hidden !important;
  font-family: "Feu de camp Timber", serif !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  /* Additional debug styles */
  min-height: 50px !important;
  line-height: 1.2 !important;
}

/* Ensure menu items are visible even with conflicting CSS */
.new-header .main-header .secondary-nav a {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background: transparent !important;
}


/* Apply the same colors to secondary nav menu items */
.secondary-nav .text-nav-why {
  color: #ec0caa !important;
  text-shadow: 0 0 10px rgba(236, 12, 170, 0.5);
}

/* More specific selector to ensure visibility */
.header-top .secondary-nav .text-nav-why {
  color: #ec0caa !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force WHY PROSPER link to be visible with maximum specificity and gradient */
body .secondary-nav .text-nav-why,
html body .secondary-nav .text-nav-why {
  background: linear-gradient(90deg, #ec0caa, #e2e60d, #3496c5) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: #ec0caa !important; /* Fallback color */
  font-weight: bold !important;
  /* Force text to be visible */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.secondary-nav .text-nav-team {
  color: #fa2dfd !important;
}

.secondary-nav .text-nav-ethos {
  color: #44fe7a !important;
}

.secondary-nav .text-nav-events {
  color: #2ff5ff !important;
}

.secondary-nav .text-nav-involved {
  color: #ffb344 !important;
}

.secondary-nav .text-nav-press {
  color: #ff4545 !important;
}

.secondary-nav .text-nav-insider {
  color: #d674ff !important;
}

.secondary-nav.nav-open {
  left: 0;
}

.secondary-nav a {
  font-family: "Feu de camp Timber", serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.secondary-nav a:active {
  transform: translateX(5px) scale(0.98);
}

/* Hover effects for colored menu items */
.secondary-nav a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure gradient text works properly on hover */
.secondary-nav .text-nav-why:hover {
  background: linear-gradient(90deg, #ec0caa, #e2e60d, #3496c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hamburger animation when active */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: "Feu de camp Timber", serif;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-xo img {
  width: clamp(100px, 15vw, 150px);
  height: auto;
  transition: all 0.3s ease;
}

.logo-xo :hover {
  transform: scale(1.03);
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Header responsive */

  p {
    font-size: 1rem;
  }

  .hamburger-menu {
    left: 1rem;
    top: 50%;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }

  @media (max-width: 480px) {
  .hamburger-menu {
    left: 0.5rem;
    padding: 6px;
  }

  .hamburger-menu span {
    width: 20px;
    height: 2px;
  }

  .beta-signup-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .get-involved-section,
  .contact-section {
    padding: 2rem 1rem;
  }
}
