/* Footer-specific styles for Esti Hangulat */

.footer-grid {
  gap: var(--space-8);
}

.footer-logo {
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: white;
}

.footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-3);
  color: white;
}

.footer-link-list {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-link-list a:hover {
  color: #ffffff;
}

.footer-meta-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-meta p {
  margin-bottom: 0.25rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  background: rgba(13, 6, 3, 0.98);
  border-top: 2px solid rgba(255, 90, 31, 0.8);
  color: #fff;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.cookie-text h2 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.cookie-btn {
  font-size: 0.7rem;
}

.cookie-btn--reject {
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn--reject:hover {
  border-color: #fff;
}

.cookie-btn--accept {
  min-width: 150px;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-btn {
    width: auto;
  }
}
