/**
 * Footer Styles
 * Following BEM methodology and using design tokens
 */

/* Footer Container */
.footer {
  width: 100%;
  background: linear-gradient(90deg, #064242 0.2%, #006767 101.1%);
  color: var(--color-white);
  font-family: var(--font-family-sans);
}

.footer__container {
  max-width: 1552px;
  margin: 0 auto;
  padding: var(--spacing-8) var(--spacing-4);
}

@media (min-width: 768px) {
  .footer__container {
    padding: var(--spacing-12) var(--spacing-4);
  }
}

/* Footer Top Section */
.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-6);
  padding-bottom: 43px;
  margin-bottom: 24px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.20);
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Logo Section */
.footer__logo-section {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-3);
}

.footer__logo-image {
  flex-shrink: 0;
}

.footer__logo-content {
  display: flex;
  flex-direction: column;
}

.footer__brand-name {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-1);
  margin-bottom: var(--spacing-2);
}

.footer__brand-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: var(--line-height-tight);
}

.footer__brand-number {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  color: var(--color-white);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .footer__brand-text {
    font-size: var(--font-size-3xl);
  }

  .footer__brand-number {
    font-size: var(--font-size-2xl);
  }
}

.footer__tagline {
  font-size: var(--font-size-sm);
  color: var(--color-white);
  opacity: 0.9;
  max-width: 28rem;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .footer__tagline {
    font-size: var(--font-size-base);
  }
}

/* Social Media Icons */
.footer__social {
  display: flex;
  align-items: center;
  gap: var(--spacing-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social-link:hover {
  transform: scale(1.15) translateY(-3px);
}

.footer__social-link:active {
  transform: scale(1.05);
}

.footer__social-link:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.footer__social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

/* Copyright Section */
.footer__copyright p {
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: var(--font-family-heebo, 'Heebo', system-ui, sans-serif);
}