/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav-link:hover {
  color: #fff;
  background-color: rgba(204, 204, 204, 0.1);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-toggle:hover {
  background-color: rgba(204, 204, 204, 0.1);
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: #000000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin: 0 1rem;
    border-radius: 8px;
    background-color: rgba(229, 229, 229, 0.15);
    border: 1px solid rgba(204, 204, 204, 0.1);
  }

  .nav-link:hover {
    background-color: rgba(229, 229, 229, 0.15);
    border-color: rgba(204, 204, 204, 0.1);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* General reset and utilities that can be used across pages */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  padding-top: 60px; /* Account for fixed navbar */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Generic buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #fff;
  color: #ffffff;
  background: #000000;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  border-color: #ffffff33;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn:hover, .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(255,255,255,0.15);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px -6px rgba(255,255,255,0.2);
}

.section-title {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  text-align: left;
  color: #000;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 65px;
  height: 3px;
  background: #000;
  border-radius: 3px;
}

/* Footer Styles */
.footer {
  background: #000000;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  margin-top: auto;
  flex-direction: column;
}

.footer-container {
  max-width: 1200px;
  flex-direction: column;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.footer-link:hover {
  color: #fff;
  background-color: rgba(204, 204, 204, 0.1);
  transform: translateY(-1px);
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-link:hover::after {
  width: 80%;
}

.footer-info {
  color: #e2e8f0;
  font-size: 0.9rem;
}

.footer-info p {
  margin: 0;
}

/* Footer Mobile Styles */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .footer {
    flex-direction: column;
  }
}