/* ========================================
   MINIMAL FOOTER STYLES
   ======================================== */

.minimal-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(2rem, 4vh, 3rem);
  margin-top: clamp(4rem, 8vh, 6rem);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-text {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
  max-width: 300px;
}

/* Links Section */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.25rem 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-column a:hover {
  color: #3b82f6;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #e2e8f0;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet (768-1199px) */
@media (max-width: 1199.98px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile (< 768px) */
@media (max-width: 767.98px) {
  .minimal-footer {
    padding: clamp(3rem, 6vh, 4rem) 0 clamp(1.5rem, 3vh, 2rem);
  }
  
  .footer-container {
    padding: 0 1.5rem;
  }
  
  .footer-content {
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 479.98px) {
  .footer-logo {
    height: 32px;
  }
  
  .footer-tagline {
    font-size: 0.875rem;
  }
  
  .footer-column h4 {
    font-size: 0.8125rem;
  }
  
  .footer-column a,
  .footer-bottom p,
  .footer-legal a {
    font-size: 0.875rem;
  }
}
