
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 120px 40px 40px;
    /* width: 100%; */
    /* overflow: hidden; */
    /* position: relative; */
}

/* =========================
   WATERMARK
========================= */
.footer .watermark {
    font-size: 220px;
    font-weight: 700;
    font-family: 'EB Garamond', serif;
    background: linear-gradient(to bottom, #555 25%, #000 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

/* =========================
   CONTAINER
========================= */
.footer-inner {
    /* max-width: 1280px; */
    /* margin: 0 auto; */
    /* padding: 0; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 72px;
    position: relative;
    z-index: 2;
}

/* =========================
   TYPOGRAPHY
========================= */
.footer h1 {
    font-size: 60px;
    margin-bottom: 24px;
}

.footer p.description {
    font-size: 18px;
    line-height: 1.8;
    color: #8b8f93;
    max-width: 400px;
}

.footer h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer a {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}

/* =========================
   COMPONENTS
========================= */
.follow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.social {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social img {
    width: 10px;
    height: 10px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* =========================
   FOOTER BOTTOM
========================= */
.bottom {
    /* max-width: 1280px; */
    margin: 80px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.footer-bottom {
    font-size: 13px;
    color: #717579;
    text-align: right;
}

/* =========================
   BREAKPOINTS
========================= */

/* Large Laptop */
@media (max-width: 1200px) {
    .footer-inner {
        gap: 48px;
        padding: 0 24px;
    }

    .footer .watermark {
        font-size: 190px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .watermark {
        font-size: 160px;
    }

    .bottom {
        padding: 0 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 0 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .footer .watermark {
        font-size: 130px;
        margin-bottom: 24px;
    }

    .bottom {
        flex-direction: column-reverse;
        gap: 24px;
        text-align: center;
        padding: 0 24px;
    }

    .footer-bottom {
        text-align: center;
    }

    .right img {
        max-width: 240px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer h1 {
        font-size: 42px;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer a {
        font-size: 15px;
    }

    .footer p.description {
        font-size: 16px;
    }

    .footer .watermark {
        font-size: 100px;
    }
}
