/* Responsive improvements for the Footer */

/* Base responsive adjustments */
@media (min-width: 1400px) {
  .footer {
    padding-block: var(--space-8) var(--space-6);
  }
  
  .footer__content {
    gap: var(--space-7);
    margin-bottom: var(--space-5);
  }
  
  .footer__brand {
    max-width: 480px;
  }
  
  .footer__logo {
    font-size: 1.4rem;
  }
  
  .footer__slogan {
    font-size: 1.05rem;
    margin-top: 0.5rem;
    line-height: 1.5;
  }
  
  .footer__actions {
    gap: 0.7rem;
  }
  
  .footer__link {
    font-size: 1.05rem;
  }
  
  .social-links {
    margin-top: 1rem;
  }
  
  .social-links a {
    font-size: 1.3rem;
    margin-right: 1rem;
  }
  
  .footer__copyright {
    font-size: 0.95rem;
  }
}

/* Large screens */
@media (min-width: 1800px) {
  .footer {
    padding-block: var(--space-9) var(--space-7);
  }
  
  .footer__content {
    gap: var(--space-8);
    margin-bottom: var(--space-6);
  }
  
  .footer__brand {
    max-width: 540px;
  }
  
  .footer__logo {
    font-size: 1.6rem;
  }
  
  .footer__slogan {
    font-size: 1.15rem;
    margin-top: 0.7rem;
    line-height: 1.6;
  }
  
  .footer__actions {
    gap: 0.9rem;
  }
  
  .footer__link {
    font-size: 1.15rem;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  }
  
  .footer__link:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  
  .social-links {
    margin-top: 1.2rem;
  }
  
  .social-links a {
    font-size: 1.5rem;
    margin-right: 1.2rem;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  }
  
  .social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent);
  }
  
  .footer__copyright {
    font-size: 1rem;
    opacity: 0.8;
  }
}

/* Extra large screens */
@media (min-width: 2200px) {
  .footer {
    padding-block: var(--space-10) var(--space-8);
  }
  
  .footer__content {
    gap: var(--space-9);
  }
  
  .footer__brand {
    max-width: 600px;
  }
  
  .footer__logo {
    font-size: 1.8rem;
  }
  
  .footer__slogan {
    font-size: 1.3rem;
    margin-top: 0.9rem;
    line-height: 1.7;
  }
  
  .footer__actions {
    gap: 1.2rem;
  }
  
  .footer__link {
    font-size: 1.3rem;
  }
  
  .social-links {
    margin-top: 1.5rem;
  }
  
  .social-links a {
    font-size: 1.7rem;
    margin-right: 1.5rem;
  }
  
  .footer__copyright {
    font-size: 1.1rem;
    padding-top: 1rem;
  }
  
  /* Enhanced glowing effect */
  .footer__link:hover {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  }
  
  .social-links a:hover {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  }
}

/* Ultra-wide screens */
@media (min-width: 2400px) {
  .footer {
    padding-block: var(--space-12) var(--space-9);
  }
  
  .footer__content {
    gap: var(--space-10);
  }
  
  .footer__brand {
    max-width: 700px;
  }
  
  .footer__logo {
    font-size: 2rem;
  }
  
  .footer__slogan {
    font-size: 1.5rem;
    margin-top: 1.2rem;
    line-height: 1.8;
  }
  
  .footer__actions {
    gap: 1.5rem;
  }
  
  .footer__link {
    font-size: 1.5rem;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .social-links a {
    font-size: 2rem;
    margin-right: 2rem;
  }
  
  .footer__copyright {
    font-size: 1.25rem;
    padding-top: 1.5rem;
  }
  
  /* 3D hover effects */
  .footer__link {
    transition: all 0.4s var(--ease);
  }
  
  .footer__link:hover {
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
  
  .social-links a {
    transition: all 0.4s var(--ease);
  }
  
  .social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
}