/* Navigation styles */
.main-nav {
  background-color: #1c1e53;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2px 0 5px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  width: 100px;
  height: 80px;
  margin-right: 15px;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}

.logo-tagline {
  color: #ffffff;
  font-size: 12px;
  opacity: 0.9;
  font-style: italic;
  line-height: 1;
  margin: 2px 0 0 0;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fcd980;
}

.nav-links a.active {
  font-weight: 500;
  color: #fcd980;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.register-button {
    width: 100%;
    padding: 18px;
    background-color: #fcd980;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #282938;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(252, 217, 128, 0.4);
}

.register-button:hover {
    background-color: #ffcb45;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 217, 128, 0.5);
}

.login-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.login-button:hover {
  background-color: #ffffff;
  color: #1c1e53;
}

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile menu styles */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background-color: #1c1e53;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 100px 30px 40px;
    overflow-y: auto;
  }
  
  .nav-content.active {
    left: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  
  .nav-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 20px;
  }
  
  .register-button,
  .login-button {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  
  /* Hamburger animation */
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 16px;
  }
  
  .logo-tagline {
    font-size: 10px;
  }
  
  .nav-content {
    width: 100%;
    padding: 90px 20px 40px;
  }
  
  .nav-links a {
    font-size: 16px;
  }
}



/* Mobile styles */
@media (max-width: 992px) {
    
    
    /* Mobile menu styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-content {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background-color: #1c1e53;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 100px 30px 40px;
        overflow-y: auto;
    }
    
    .nav-content.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }
    
    .register-button,
    .login-button {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    /* Hamburger animation */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}


/* Add padding to body to account for fixed header */
body {
    padding-top: 100px; /* Adjust based on navbar height */
}