/* Shared Component CSS for Alsania.io
   For header, footer, and navigation components */

/* Footer Grid Layout */
.footer {
  background: rgba(0, 16, 31, 0.95);
  border-top: 1px solid rgba(0, 243, 255, 0.25);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section {
  padding: 1rem;
}

.footer-section h3 {
  color: #00f3ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #6af7ff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #6af7ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #39FF14;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.2s;
  filter: drop-shadow(0 0 6px rgba(0, 243, 255, 0.3));
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.6));
  transform: translateY(-2px) scale(1.1);
}

.social-links img { width: 24px; height: 24px; }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
  color: #6af7ff;
  font-size: 0.9rem;
}

/* Header styles (matching main site) */
.alsania-header {
  background: rgba(0, 16, 31, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.alsania-logo {
  text-decoration: none;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #39FF14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alsania-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #6af7ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #39FF14;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .alsania-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-menu {
    display: block;
    background: none;
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: #00f3ff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
  }
  
  .alsania-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 16, 31, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.25);
  }
  
  .alsania-nav.active {
    display: block;
  }
}


/* 
