/* IMPORT CZCIONEK BEBAS NEUE ORAZ ANTON */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Inter:wght@400&family=Permanent+Marker&display=swap');

:root {
    --background: #DFDFDF; 
    --light: #A1A1A1;
    --accent: #6B0303;     
    --Medium: #3C3C3C;     
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-anton: 'Anton', sans-serif;
}

/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 10px;
}

body {
    font-family: var(--font-bebas);
    background-color: var(--Medium);
    overflow-x: hidden;
}

/* --- NAV DESKTOP    */

.nav-desktop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    z-index: 100;
    background-color: var(--Medium);
}

.nav-desktop .zawartosc {
    display: flex;
    gap: 6rem;
    list-style: none;
}

.nav-desktop .zawartosc a {
    font-size: 4.8rem;
    text-decoration: none;
    letter-spacing: 2px;
    color: transparent; 
    -webkit-text-stroke: 2px var(--background);
    transition: color 0.2s ease;
}

.nav-desktop .zawartosc a:hover,
.nav-desktop .zawartosc a:active {
    color: var(--background);
}

.burger, .nakladka {
    display: none;
}

/* --- SEKCJA 1 - DESKTOP    */

#pierwsza {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../IMG/IMG_4468.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.graffiti {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; 
    height: auto;
    z-index: 1;
    opacity: 0;
    transform: translate(calc(-50% - 50px), -50%) translateY(-250px);
    transition: opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1), transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: block;
}

.graffiti img {
    width: 100%;
    height: auto;
}

.postac {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 85vh;
    width: auto;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50%) translateY(300px);
    transition: opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1), transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.tagi-kontener {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    padding: 18rem 4rem 8rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 3;
    pointer-events: none;
}

.tag-lewy {
    font-size: 3.6rem;
    color: var(--background);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-200px);
    transition: opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1), transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tag-prawy {
    font-size: 3.6rem;
    color: var(--background);
    letter-spacing: 1px;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(200px);
    transition: opacity 2.5s cubic-bezier(0.16, 1, 0.3, 1), transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.graffiti.wjechal { opacity: 1; transform: translate(-50%, -50%) translateY(0); }
.postac.wjechal { opacity: 1; transform: translateX(-50%) translateY(0); }
.tag-lewy.wjechal { opacity: 1; transform: translateX(0); }
.tag-prawy.wjechal { opacity: 1; transform: translateX(0); }

/* --- ŁĄCZNIK SEKCJI - DESKTOP        */

.lacznik-apolla {
    position: relative;
    width: 100%;
    background-color: var(--background); 
    padding: 15rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-bottom: -14rem;
    z-index: 10;

    -webkit-mask-image: none;
    mask-image: none;
}

.lacznik-apolla::before,
.lacznik-apolla::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 5rem;
    background-image: url('../IMG/Arrow1.png');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: center;
    pointer-events: none;
    z-index: 101;
}

.lacznik-apolla::before {
    top: -2.5rem;
}

.lacznik-apolla::after {
    bottom: -2.5rem;
    transform: rotate(180deg);
}

.wielki-napis-apolla {
    position: relative;
    z-index: 2;
    font-family: var(--font-anton);
    font-size: 30rem; 
    color: var(--accent); 
    letter-spacing: 2px;
    line-height: 0.9;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    
    opacity: 0;
    transform: scale(0.9);
    will-change: opacity, transform;
    transition: opacity 0.05s linear, transform 0.05s linear;
}

/* --- SEKCJA 2 (ABOUT US)      */

#druga {
    height: 1000px ;
    background-color: var(--accent);
    background-image: url('../IMG/about2.png');
    background-repeat: no-repeat;
    background-position: right center; 
    background-size: 60% auto; 
    
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-kontener {
    width: 100%;
    max-width: 800px; 
    padding-left: 300px; 
    padding-bottom: 100px;
    padding-top: 200px;
    position: relative;
    z-index: 1;
    color: var(--background);
}

.about-naglowek-marker {
    font-family: 'Permanent Marker';
    font-size: 3.6rem; 
    color: var(--background);
    margin-bottom: 3rem;
}

.about-tresc-inter {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: var(--background);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-foto-kontener {
    position: relative;
    width: 100%;
}

.about-foto-kontener img {
    width: 100%;
    display: block;
    
}

.about-foto-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 20%, transparent 80%, var(--accent) 100%);
    pointer-events: none;
}

/* --- SEKCJA 3 (SHOP)      */

#trzecia {
    background-color: var(--Medium);
    padding-left: 150px;
    padding-right: 150px;
 }

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.right-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.right-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.right-right-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
}
.item { 
    position: relative; 
    overflow: hidden; 
}
.item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; }
.item span {
    position: absolute; 
    bottom: 10px; 
    right: 10px;
    font-family: 'Bebas Neue', sans-serif; 
    color: var(--background);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.jacket span, .blouse span { font-size: 6.4rem; }
.hoodie span, .tshirt span { font-size: 4.8rem; }

.item span:hover,
.item span:active {
    transform: scale(1.05);
    opacity: 0.7; 
}

.buy-now {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 9.6rem; 
    color: var(--background);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: transparent;
    border: none;
    line-height: 0.9;
    text-align: center;
    padding-left: 20px;
}

.buy-now:hover {
    transform: scale(1.05);
    opacity: 0.7; 
}

.mobile-only{
    display: none;
}
.desktop-only{
    display: block;
}


/* --- SEKCJA 4 (NEWSLETTER) --- */

#czwarta {
    height: 900px;
    display: flex;
    position: relative;
    background: var(--Medium);
    overflow: hidden;
}

.news-image-left {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.news-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-image-right {
    width: 50%;
    height: 100%;
}

.news-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#czwarta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 20%, var(--Medium) 50%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.news-content {
    position: absolute;
    top: 70%;
    right: 10%; 
    transform: translateY(-50%);
    z-index: 2;
    color: var(--background);
    max-width: 400px; 
}

.news-content h2 { 
    font-size: 4.8rem; 
    margin-bottom: 1.5rem; 
    line-height: 1;
}

.news-content p { 
    font-family: 'Inter', sans-serif; 
    font-size: 1.6rem; 
    margin-bottom: 2.5rem; 
    line-height: 1.4; 
}

.news-form { 
    display: flex; 
    align-items: center;
    gap: 1.5rem; 
    margin-bottom: 1.5rem; 
}

.news-form input {
    background: var(--background);
    border: none;
    padding: 1.2rem;
    flex-grow: 1;
    font-family: var(--font-bebas);
    font-size: 2rem;
}

.news-btn {
    font-family: var(--font-bebas);
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--background);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.news-btn:hover {
    color: var(--background); 
    -webkit-text-stroke: 0;
    transform: scale(1.05);
}

.news-checkbox { 
    font-family: 'Inter', sans-serif; 
    font-size: 1.2rem; 
    display: flex; 
    align-items: center; 
    gap: 0.8rem; 
}

/* --- SEKCJA 5 (STOPKA) --- */

#stopka {
    background-color: var(--background);
    color: var(--accent);
    padding: 8rem 0 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-logo {
    font-family: var(--font-anton);
    font-size: 4.8rem;
    margin-bottom: 5rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.col { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
    align-items: flex-start;
}

.col h3 {
    font-family: var(--font-anton);
    font-size: 2rem;
    margin-bottom: 1rem;
    pointer-events: none;
}


.hover-text {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.hover-text:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.col span {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
}

.socials { 
    display: flex; 
    gap: 1.5rem; 
    margin-top: 1rem; 
}

.socials a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.socials a:hover {
    transform: scale(1.2);
}

.socials img { 
    width: 3rem; 
    height: 3rem; 
    display: block;
}

.copyright {
    text-align: center;
    font-family: var(--font-anton);
    font-size: 2.4rem;
    padding-top: 3rem;
}

.footer-mobile-section { display: none; }

/* --- WERSJA ŚREDNIA           */

@media (max-width: 1100px) {

    #trzecia { display: none !important; }

#trzecia-mobile {
    display: block !important;
    background-color: var(--Medium);
    padding: 4rem 0;
    overflow: hidden;
}

.buy-now-mobile {
    padding: 5%;
    font-family: var(--font-bebas);
    font-size: 5.4rem;
    color: var(--background);
    text-align: center;
    margin-bottom: 2rem;
}

.buy-now-mobile:hover {
    transform: scale(1.1); 
    opacity: 0.8;         
}

.scroll-container {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    padding: 0 5%;
    gap: 20px;
}
.scroll-container::-webkit-scrollbar {
    display: none; 
}

.item-mobile {
    flex: 0 0 min(58vw, 48rem);
    scroll-snap-align: center;
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.item-mobile img {
    width: 100%;
    height: clamp(56rem, 78vw, 72rem); 
    object-fit: cover;
    transition: all 0.3s ease;
}

.item-mobile.is-active img {
    width: 100%;
    height: clamp(60rem, 82vw, 76rem);
}

.label-mobile {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
    font-family: var(--font-bebas);
    font-size: 3.6rem; 
    color: var(--background);
    pointer-events: none;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    z-index: 2;
    transition: transform 0.3s ease, font-size 0.3s ease;
}


.item-mobile.is-active .label-mobile {
    transform: scale(1.1);
    font-size: 4.2rem;
}

.item-mobile:active .label-mobile {
    transform: scale(1.05);
    opacity: 0.7;
}
.footer-mobile-section { display: none; }

}

/* --- WERSJA MOBILNA          */

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .burger {
        display: block;
        position: fixed;
        top: 2.5rem;
        right: 2.5rem;
        font-size: 4rem;
        color: var(--background);
        cursor: pointer;
        z-index: 110;
    }

    .nakladka {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background);
        z-index: 120;
        justify-content: center;
        align-items: center;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 80%;
    }

    .nakladka.aktywne { right: 0; }
    
    .zamknijX {
        position: absolute;
        top: 2.5rem;
        right: 2.5rem;
        font-size: 5rem;
        color: var(--Medium);
        cursor: pointer;
    }

    #pierwsza {
        height: 85vh;
    }

    .zawartosc-mobile {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        list-style: none;
        text-align: center;
    }

    .zawartosc-mobile a {
        font-size: 5rem;
        text-decoration: none;
        letter-spacing: 2px;
        font-weight: bold;
        color: transparent;
        -webkit-text-stroke: 2px var(--accent);
        transition: color 0.2s ease;
    }

    .zawartosc-mobile a:hover,
    .zawartosc-mobile a:active { color: var(--accent); }

    
    .tagi-kontener {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 3rem 2.6rem 0 2.6rem;
        height: auto;
    }

    .tag-lewy { 
        font-size: 3.2rem; 
        line-height: 1;
        transform: translateY(0) !important; 
    }

    .tag-prawy {
        text-align: end;
        font-size: 2rem;
        line-height: 1.05;
        margin-top: 6rem;
        transform: translateY(0) !important;
    }

    .graffiti { 
        width: 160%;
    }
    .postac { 
        height: 60vh; 
    }


    .lacznik-apolla {
        background-color: var(--accent); 
        padding: 7rem 0;
        margin-top: 0;
        margin-bottom: 0;
        overflow: visible;
        z-index: 12;
        
        -webkit-mask-image: none;
        mask-image: none;
    }

    .lacznik-apolla::before,
    .lacznik-apolla::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 4rem;
        background-image: url('../IMG/Arrow2.png');
        background-repeat: repeat-x;
        background-size: auto 100%;
        background-position: center;
        pointer-events: none;
    }

    .lacznik-apolla::before {
        top: -15px;
    }

    .lacznik-apolla::after {
        bottom: -15px;
        transform: rotate(180deg);
    }

    .wielki-napis-apolla {
        position: relative;
        z-index: 1;
        font-size: 8.8rem; 
        color: var(--background); 
        letter-spacing: 1px;
    }

   #druga {
        position: relative;
        height: auto;
        min-height: 98rem;
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        overflow: hidden;
   }

    .about-kontener {
        position: relative; 
        z-index: 1;
        width: 100%;
        min-height: 98rem;
        height: auto;
        padding: 9rem 3.6rem 8rem;
        background: linear-gradient(
            180deg,
            rgba(223, 223, 223, 0.78) 0%,
            rgba(223, 223, 223, 0.72) 76%,
            rgba(107, 3, 3, 0.58) 100%
        );
    }


    /* Tekst na wierzchu */

    .about-tresc {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .about-naglowek-marker {
        color: var(--accent);
        font-size: 2.8rem;
        line-height: 1;
        margin-bottom: 2.8rem;
    }

    .about-tresc-inter {
        color: var(--accent);
        font-family: 'Inter', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.01em;
        margin-bottom: 2.8rem;
    }

    .about-naglowek-marker:last-child {
        margin-top: 1.8rem;
        margin-bottom: 0;
        text-align: center;
    }

    /* SHOP */

#trzecia { display: none !important; }

#trzecia-mobile {
    display: block !important;
    position: relative;
    background-color: var(--accent);
    padding: 6.2rem 0 4rem;
    overflow: visible;
}

#trzecia-mobile::before {
    content: '';
    position: absolute;
    top: -8rem;
    left: 0;
    width: 100%;
    height: 8rem;
    background: linear-gradient(
        180deg,
        rgba(107, 3, 3, 0) 0%,
        rgba(107, 3, 3, 0.7) 55%,
        var(--accent) 100%
    );
    pointer-events: none;
}

.buy-now-mobile {
    padding: 0 5%;
    font-family: var(--font-bebas);
    font-size: 4.8rem;
    color: var(--background);
    text-align: center;
    margin-bottom: 4rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.buy-now-mobile:active {
    transform: scale(1.1); 
    opacity: 0.8;         
}

.scroll-container {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    padding: 0 5%;
    gap: 20px;
}
.scroll-container::-webkit-scrollbar {
    display: none; 
}

.item-mobile {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.item-mobile img {
    width: 100%;
    height: clamp(38rem, 105vw, 46rem); 
    object-fit: cover;
    transition: all 0.3s ease;
}

.item-mobile.is-active img {
    width: 100%;
    height: clamp(40rem, 112vw, 50rem);
}

.label-mobile {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
    font-family: var(--font-bebas);
    font-size: 3.6rem; 
    color: var(--background);
    pointer-events: none;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
    z-index: 2;
    transition: transform 0.3s ease, font-size 0.3s ease;
}


.item-mobile.is-active .label-mobile {
    transform: scale(1.1);
    font-size: 4.2rem;
}

/* NEWSLETTER */

#czwarta {
        min-height: 78rem;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        padding: 8rem 3rem;
        background-image:
            linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111 100%),
            url('../IMG/IMG_4468.JPG');
        background-repeat: no-repeat;
        background-size: 100% 20rem, 100% 20rem;
        background-position: top center;
        background-color: #111;
    }
    .news-image-left, .news-image-right {
        display: none;
    }

#czwarta::before {
    content: '';
        position: absolute;
        top: 20rem;
        left: 0;
        width: 100%;
        height: calc(100% - 12rem);
        background-image: url('../IMG/IMG_3385.JPG');
        background-size: auto 100%;
        background-position: center bottom;
        transform: scaleX(-1); 
        filter: brightness(0.62) contrast(1.08);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12rem, black 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 12rem, black 100%);
        z-index: 0;
    }

    #czwarta::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 36%, rgba(0, 0, 0, 0.04) 76%);
        pointer-events: none;
        z-index: 1;
    }

    .news-content {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        padding: 0;
        z-index: 2;
    }

    .news-content h2 {
        font-size: 2.6rem;
        line-height: 1;
        margin-bottom: 2.2rem;
    }

    .news-content p {
        max-width: 36rem;
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 2.8rem;
    }

    .news-form {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .news-form input {
        width: 100%;
        height: 5rem;
        padding: 0 2rem;
        font-family: 'Inter', sans-serif;
        font-size: 1.8rem;
        color: var(--Medium);
        background-color: var(--background);
        box-shadow: 0 0 1.2rem rgba(255, 255, 255, 0.85);
    }

    .news-btn {
        font-size: 4.8rem;
        padding: 0;
        text-align: left;
        line-height: 0.9;
        -webkit-text-stroke: 1px var(--background);
    }

    .news-checkbox {
        font-size: 1.1rem;
        margin-top: 1rem;
        color: var(--background);
    } 
    
    /* STOPKA */
    
    #stopka {
        background-color: var(--accent);
        color: var(--background);
        padding: 4rem 0 4.5rem;
    }

    .footer-container {
        position: relative;
        max-width: none;
        padding: 0 2.8rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 3.2rem;
        row-gap: 5.5rem;
    }

    .footer-logo {
        grid-column: 1;
        grid-row: 1;
        font-size: 4.1rem;
        line-height: 1;
        color: var(--background);
        margin: 0;
    }

    .footer-links {
        grid-column: 1 / -1;
        grid-row: 2;
        display: grid;
        grid-template-columns: max-content max-content;
        justify-content: space-between;
        column-gap: 0;
        row-gap: 5.5rem;
        margin: 0;
    }

    .footer-links .col:nth-child(4) { order: 1; }
    .footer-links .col:nth-child(1) { order: 2; }
    .footer-links .col:nth-child(2) { order: 3; }
    .footer-links .col:nth-child(3) { order: 4; }
    .footer-links .col:nth-child(1) a:first-of-type { display: none; }

    .footer-links .col:nth-child(1),
    .footer-links .col:nth-child(3) {
        align-items: flex-end;
        text-align: right;
    }

    .col {
        gap: 1.6rem;
        color: var(--background);
    }

    .col h3 {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 1rem;
        color: var(--background);
    }

    .hover-text,
    .col span {
        font-size: 1.6rem;
        line-height: 1.25;
        color: var(--background);
    }

    .footer-links .col:nth-child(4) span,
    .footer-links .col:nth-child(4) a {
        white-space: nowrap;
    }

    .socials {
        position: absolute;
        top: 0;
        right: 2.8rem;
        gap: 1.6rem;
        margin-top: 0;
    }

    .socials img {
        width: 4.2rem;
        height: 4.2rem;
        filter: brightness(0) invert(1);
    }

    .copyright {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 1rem;
        padding-top: 0;
        color: var(--background);
        font-size: 1.2rem;
        line-height: 1;
    }

}