/* ============================================================================
   LOGO ONLY - CENTERED AT TOP
   ============================================================================ */

/* Header - contains logo */
header {
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--clear-bg, rgba(0, 0, 0, 0));
  text-align: center;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-sizing: border-box;
}

/* Logo container */
.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Logo styling */
.header-logo {
  width: 400px;
  height: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

/* Logo link */
.header-logo-link {
  text-decoration: none;
  display: inline-block;
}

/* Hide all navigation and footer elements */
.desktop-nav,
.mobile-nav,
.mobile-menu-toggle,
.hamburger-line
 {
  display: none !important;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Mobile adjustments */
@media (max-width: 768px) {
  header {
    padding: 50px;
  }
  
  .header-logo {
    width: 200px;
  }
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--clear-bg, rgba(0, 0, 0, 0.8));
  color: var(--nav-white, rgb(255, 255, 255));
  text-align: center;
  padding: 0;
  overflow: hidden; 
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.footer-text {
  margin: 0;
  color: inherit;
  font-family: 'Interstate', sans-serif;
  font-weight: 600;
  font-size: 10px;
}

.footer-text a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.footer-text a:hover {
  opacity: 0.7;
}
