/* ==========================================
   HIGH-TECH NETWORK FOOTER STÍLUSOK
========================================== */

/* Alap konténer */
.network-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #050b14 0%, #07111f 40%, #03060c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    padding-top: 60px;
    margin-top: 80px;
    color: rgba(255, 255, 255, 0.7);
}

/* Kék glow háttéreffekt */
.footer-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 115, 230, 0.12), transparent 65%);
    pointer-events: none;
}

/* TOP tartomány (3 oszlopos grid) */
.footer-top {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(420px, 1fr) 200px;
    gap: 50px;
    padding: 0 40px 50px;
    align-items: start;
}

/* Brand / Logo rész */
.footer-brand .logo-img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)) 
            drop-shadow(0 0 15px rgba(0, 163, 255, 0.2));
    margin-bottom: 15px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/*    showroom   */

.footer-showroom{
    display:grid;

    grid-template-columns:
        repeat(5,1fr);

    gap:14px;

    max-width:900px;

    margin:0 auto;
}

/*        kártyák    */

.footer-card{
    position:relative;

    aspect-ratio:16/10;

    width:100%;

    overflow:hidden;

    border-radius:18px;

    border:
        1px solid rgba(255,255,255,0.10);

    background:
        rgba(255,255,255,0.04);

    transition:0.35s ease;

    text-decoration:none;
    height:200px;
}

.footer-card img{
    width:100%;
    height:100%;

    object-fit:contain;

    transition:0.4s ease;
}

.footer-card span{
    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    padding:10px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            transparent
        );

    color:white;

    font-size:0.8rem;
    font-weight:700;

    text-align:center;
}

/*     hover effekt   */

.footer-card:hover{
    transform:
        translateY(-6px)
        scale(1.03);

    box-shadow:
        0 0 25px rgba(0,140,255,0.25);
}

.footer-card:hover img{
    transform:scale(1.06);
}

/*   aktuális    domain */

.footer-card.active{
    border:
        1px solid rgba(0,140,255,0.55);

    box-shadow:
        0 0 22px rgba(0,140,255,0.28);
}

/* Jobb oldali linkek & Kapcsolat */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 163, 255, 0.7);
    transform: translateX(3px);
}

.footer-links i {
    color: #00a3ff;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    filter: drop-shadow(0 0 3px rgba(0, 163, 255, 0.4));
}

/* Alsó sáv & Kapszula gombok */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}

.footer-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-capsule-button {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.82rem;
    transition: all 0.3s ease;
}

.footer-capsule-button:hover {
    color: #ffffff;
    border-color: rgba(0, 163, 255, 0.4);
    background: rgba(0, 163, 255, 0.12);
    box-shadow: 0 0 12px rgba(0, 163, 255, 0.2);
    transform: translateY(-2px);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

/* Responsivitás */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand, 
    .footer-links {
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .footer-showroom {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        padding: 0 20px 40px;
    }

    .footer-showroom {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-domains {
        justify-content: center;
    }
}