/* header-footer.css */
/* HEADER */
.site-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:last-child {
  margin-bottom: 0;
}

/* FOOTER */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-col p, .footer-col ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .logo-container img {
    height: 40px;
  }
  
  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .nav-wrapper {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: inset 0 5px 10px -5px rgba(0,0,0,0.1);
  }

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

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
  }
  
  .btn-wrapper {
    text-align: center;
  }
}
