/* ============================================
   SZÍNPALETTA - Meleg, lágy színek
   ============================================ */
:root {
  --primary-orange: #FF8C42;
  --secondary-orange: #FFB366;
  --light-orange: #FFE5D4;
  --primary-blue: #4A90E2;
  --secondary-blue: #6BB6FF;
  --light-blue: #E3F2FD;
  --accent-coral: #FF6B6B;
  --accent-teal: #4ECDC4;
  --dark-bg: #2C3E50;
  --gradient-warm: linear-gradient(135deg, #FF8C42, #FFB366);
  --gradient-cool: linear-gradient(135deg, #4A90E2, #6BB6FF);
  --gradient-sunset: linear-gradient(135deg, #FF8C42, #FF6B6B, #4A90E2);
  --gradient-footer: linear-gradient(135deg, #2C3E50, #34495E);
}

/* ============================================
   Footer - Színes, egy soros elrendezés
   ============================================ */

.footer {
  background: var(--gradient-footer);
  color: white;
  padding: 50px 40px 0;
  position: relative;
  overflow: hidden;
}

/* Dekoratív háttér elemek */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-sunset);
}

.footer::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.1), transparent);
  border-radius: 50%;
}

/* Egy sorba - minden elem egymás mellé */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

/* About rész - kiemelkedő színekkel */
.footer-about {
  flex: 1.8;
  min-width: 0;
}

.footer-about h3 {
  font-size: 26px;
  font-weight: 900;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  white-space: nowrap;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 66, 0.3));
}

.footer-about p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

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

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 140, 66, 0.15);
  border: 2px solid rgba(255, 140, 66, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFB366;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--gradient-warm);
  border-color: transparent;
  color: white;
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Link oszlopok - színes címekkel */
.footer-links {
  flex: 1;
  min-width: 0;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-warm);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #FFB366;
  transform: translateX(5px);
}

.footer-links a i {
  width: 18px;
  text-align: center;
  color: #FF8C42;
  transition: all 0.3s;
}

.footer-links a:hover i {
  color: #FFB366;
  transform: scale(1.2);
}

/* Speciális stílus a kapcsolat linkekhez */
.footer-links a[href^="tel"],
.footer-links a[href^="mailto"] {
  background: rgba(255, 140, 66, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid #FF8C42;
}

.footer-links a[href^="tel"]:hover,
.footer-links a[href^="mailto"]:hover {
  background: rgba(255, 140, 66, 0.2);
  border-left-color: #FFB366;
  transform: translateX(8px);
}

/* Cookie beállítások link kiemelése */
.footer-links a[onclick*="Cookie"] {
  color: #4ECDC4;
  font-weight: 600;
}

.footer-links a[onclick*="Cookie"]:hover {
  color: #6EDDD4;
}

/* Alsó sáv - copyright színes háttérrel */
.footer-bottom {
  max-width: 1400px;
  margin: 35px auto 0;
  padding: 25px 0;
  border-top: 2px solid rgba(255, 140, 66, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, 
    transparent, 
    rgba(255, 140, 66, 0.05) 30%, 
    rgba(74, 144, 226, 0.05) 70%, 
    transparent);
}

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

/* Tablet - 2 sor: about + links egy sorban */
@media (max-width: 1024px) {
  .footer {
    padding: 45px 30px 0;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 35px;
  }

  .footer-about {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-about h3 {
    font-size: 24px;
  }

  .footer-links {
    flex: 1 1 calc(25% - 35px);
  }
}

/* Kis tablet */
@media (max-width: 768px) {
  .footer {
    padding: 40px 24px 0;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-about {
    flex: 1 1 100%;
  }

  .footer-about h3 {
    font-size: 22px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-links {
    flex: 1 1 calc(50% - 30px);
  }

  .footer-links h4 {
    font-size: 15px;
  }
}

/* Telefon */
@media (max-width: 480px) {
  .footer {
    padding: 36px 20px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
  }

  .footer-about,
  .footer-links {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-about h3 {
    font-size: 20px;
    white-space: normal;
  }

  .footer-about p {
    font-size: 13px;
  }

  .footer-social {
    gap: 8px;
    justify-content: center;
  }

  .social-link {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .footer-links h4 {
    font-size: 14px;
    white-space: normal;
  }

  .footer-links a {
    font-size: 13px;
    white-space: normal;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 20px 0;
  }
}

/* Extra animációk */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.footer-social .social-link:nth-child(1) {
  animation: float 3s ease-in-out infinite;
}

.footer-social .social-link:nth-child(2) {
  animation: float 3s ease-in-out infinite 0.5s;
}

.footer-social .social-link:nth-child(3) {
  animation: float 3s ease-in-out infinite 1s;
}

.footer-social .social-link:nth-child(4) {
  animation: float 3s ease-in-out infinite 1.5s;
}