/* Footer Styles */
.site-footer {
  background: var(--secondary-color);
  color: #ffffff;
}

.footer-main {
  padding: 50px 0 30px;
}

.footer-logo {
  max-height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.footer-title:hover {
  color: var(--primary-color);
}

.text-accent {
  color: var(--primary-color);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

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

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: var(--color-text-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color 0.2s;
}

.footer-list a span {
  font-family: var(--font-heading);
}

.footer-list a:hover {
  color: var(--primary-color);
}

.footer-list a i {
  color: var(--primary-color);
  font-size: 12px;
  margin-top: 4px;
}

.footer-list a small {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 12px;
}

.footer-events a {
  flex-direction: column;
  gap: 2px;
}

.footer-events .event-date {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
}

.footer-events .event-title {
  color: var(--color-text-white);
  font-family: var(--font-heading);
}

.footer-events a:hover .event-title {
  color: var(--primary-color);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: none;
  color: #ffffff;
}

.footer-newsletter .btn-primary {
  padding: 10px 15px;
}

.newsletter-message {
  font-size: 13px;
}

.newsletter-message.success {
  color: #28a745;
}

.newsletter-message.error {
  color: #dc3545;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links a i {
  color: var(--primary-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  font-size: 14px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-heading {
    margin-top: 10px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }
}

/* COOKIE CONSENT */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 0 20px 20px;
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-consent.hiding {
  animation: slideDown 0.3s ease-in forwards;
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  background: #121212;
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-icon i {
  font-size: 1.5rem;
  color: white;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.cookie-btn-accept {
  background: var(--primary-color);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(100, 100, 100, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 0 15px 15px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 15px;
  }

  .cookie-icon {
    width: 45px;
    height: 45px;
  }

  .cookie-icon i {
    font-size: 1.3rem;
  }

  .cookie-text h4 {
    font-size: 1rem;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

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

  .cookie-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Scroll to Top Button */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

#scrollToTopBtn.visible {
  display: flex;
}

@media (max-width: 767.98px) {
  #scrollToTopBtn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}
