/* ==========================================================================
   MODERN SZÍNVARAZS LÁBLÉC (FOOTER) STÍLUSOK - KIBŐVÍTETT SZÍNEKKEL
   ========================================================================== */
.site-footer {
    width: 100% !important;
	max-width: 100% !important;
    color: #444444;
    padding: 100px 0 0 0;
	margin-bottom: 5%;
    font-family: 'Segoe UI', Arial, sans-serif;
    border-top: 1px solid #eaeaea;
	
	  

	  /* A megadott színátmeneted */
	  background: linear-gradient(90deg, #f591a8, #f19e8f, #f0cc60, #73f391, #94c5f9, #c0a5f2);

	  /* Megnöveljük a háttér méretét, hogy legyen honnan "beúszniuk" a színeknek */
	  background-size: 400% 400%;

	  /* Meghívjuk az animációt: 15 másodperces, végtelenített és egyenletes */
	  animation: rainbowShift 15s ease infinite;
	}

/* Az animáció logikája: mozgatjuk a háttér pozícióját */
@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
	
	


.footer-container {
    width: 100% !important;             /* 👈 JAVÍTVA: Teljes szélesség */
    max-width: 1200px !important;         /* 👈 JAVÍTVA: Töröljük a 1200px-es korlátot */
    margin: 0 auto;
    padding: 0 60px;         /* 👈 JAVÍTVA: Kicsit nagyobb oldalsó margó a szép elrendezésért */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

/* Oszlop címek alapstílusa */
.footer-column h3 {
    color: #333333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 45px;
    height: 4px;
    border-radius: 2px;
}

/* 1. Oszlop egyedi dekoráció: Lila -> Kék átmenet */
.footer-about h3::after {
    background: linear-gradient(135deg, #6f42c1, #007bff);
}

/* 2. Oszlop egyedi dekoráció: Pink -> Narancs átmenet */
.footer-links-col h3::after {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

/* 3. Oszlop egyedi dekoráció: Sárga -> Zöld átmenet */
.footer-contact h3::after {
    background: linear-gradient(135deg, #f3b500, #28a745);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Listák és linkek */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-column ul li a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

/* Információk linkjeinek hover hatása: Kategória lila */
.footer-links-col ul li a:hover {
    color: #6f42c1;
    padding-left: 5px;
}

/* Kapcsolati linkek hover hatása: Királykék */
.footer-contact ul li a:hover {
    color: #007bff;
    padding-left: 5px;
}

/* Közösségi média ikonok alapállapotban */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: #f5f5f5;
    color: #444444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.25s ease;
}

/* VÁLTOZATOS KÖZÖSSÉGI HOVER HATÁSOK */
/* Facebook -> Kék */
.footer-socials a.fb-hover:hover {
    background: #007bff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Instagram -> Pink-Narancs átmenet */
.footer-socials a.insta-hover:hover {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 65, 108, 0.3);
}

/* TikTok -> Lila */
.footer-socials a.tiktok-hover:hover {
    background: #6f42c1;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

/* KAPCSOLATI OSZLOP IKONJAINAK EGYEDI SZÍNEI */
.footer-contact ul li i.icon-email {
    color: #ff416c; /* Pink email ikon */
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.footer-contact ul li i.icon-phone {
    color: #28a745; /* Zöld telefon ikon */
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.footer-contact ul li i.icon-geo {
    color: #f3b500; /* Sárga helyszín ikon */
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

/* Alsó szerzői jogi sáv a konténeren belül */
.footer-bottom {
    width: 100%;             /* 👈 Kényszerítjük, hogy új sort kezdjen és végigérjen */
    
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777777;
    margin: 0;
}

/* ==========================================================================
   TELJES MOBIL RESZPONZIVITÁS
   ========================================================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-column h3 {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        margin-top: 35px;
    }
}