

/* ==================================================
   FOOTER
================================================== */

.site-footer {

    padding: var(--space-3xl) 0 var(--space-xl);

    background: #111827;

    color: rgba(255,255,255,.82);
}


/* ==================================================
   GRID
================================================== */

.footer-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 42px;

    margin-bottom: var(--space-2xl);
}


/* ==================================================
   COLUMNS
================================================== */

.footer-column h3 {

    margin-bottom: 18px;

    color: #fff;

    font-size: var(--font-size-lg);
}

.footer-column p {

    line-height: 1.9;

    color: rgba(255,255,255,.70);
}

.footer-column ul {

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {

    margin-bottom: 14px;

    color: rgba(255,255,255,.70);
}

.footer-column a {

    color: rgba(255,255,255,.70);

    text-decoration: none;

    transition: var(--transition);
}

.footer-column a:hover {

    color: #fff;
}


/* ==================================================
   LOGO
================================================== */

.footer-logo {

    width: 240px;

    margin-bottom: 28px;

    display: block;
}


/* ==================================================
   MOBILE LAYOUT
================================================== */

@media (max-width:767px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        column-gap:40px;

        row-gap:40px;
    }

    /* Logo teljes szélesség */

    .footer-column:first-child{

        grid-column:1 / -1;

        text-align:left;
    }

    /* Navigation */

    .footer-column:nth-child(2){

        grid-column:1;

        text-align:left;
    }

    /* Kontakt */

    .footer-column:nth-child(3){

        grid-column:2;

        text-align:left;
    }

}


/* ==================================================
   BOTTOM
================================================== */

.footer-bottom {

    display: flex;
    flex-direction: column;

    gap: 18px;

    padding-top: 32px;

    border-top: 1px solid rgba(255,255,255,.12);

    text-align: center;
}

.footer-bottom p {

    color: rgba(255,255,255,.55);
}

.footer-links {

    display: flex;

    justify-content: center;

    gap: 24px;

    flex-wrap: wrap;
}

.footer-links a {

    color: rgba(255,255,255,.70);

    text-decoration: none;

    transition: var(--transition);
}

.footer-links a:hover {

    color: #fff;
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width:768px){

    .footer-grid{

        grid-template-columns:2fr 1fr 1fr 1fr;

        gap:48px;
    }

    .footer-bottom{

        flex-direction:row;

        justify-content:space-between;

        align-items:center;

        text-align:left;
    }

}

.footer-social{
    margin-top:28px;
}

.footer-social a{

    display:flex;

    align-items:center;
    justify-content:center;

    width:56px;
    height:56px;

    border:1px solid rgba(255,255,255,.22);

    border-radius:50%;

    color:#ffffff;

    background:rgba(255,255,255,.03);

    box-shadow:0 8px 24px rgba(0,0,0,.12);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}

.footer-social a:hover{

    background:var(--primary-color);

    border-color:var(--primary-color);

    color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(0,0,0,.22);

}

.footer-social svg{

    width:23px;
    height:23px;

    display:block;

    fill:currentColor;

}