:root {
    --bg: #FFECF3;
    --bg2: #FFF5F9;
    --bg-light: #ffecf3a6;
    --bg-dark: #fdafcb;
    
    --tx: #000000;

    --cf: #DB155E;

    --font-main: "Space Grotesk";
    --font-focus: "VT323";
    --font-focus2: "Alegreya Sans SC";
    
    --header-height: 120px;

    --side-padding: 120px;
}

::selection {
    background-color: var(--cf);
    color: var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--cf);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cf-dark);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--cf) var(--bg);
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--bg);
    color: var(--tx);
    font-family: var(--font-main);
}

#smooth-content {
    max-width: 1766px;
    margin: 0 auto;
    padding-top: var(--header-height);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

img,
svg {
    pointer-events: none;
    user-select: none;
}

.cf {
    color: var(--cf);
}
.nowrap {
    text-wrap: nowrap;
    white-space: nowrap;
}

header {
    position: fixed;
    width: 100%;
    padding: 0 var(--side-padding);
    display: flex;
    gap: 2em;
    height: var(--header-height);
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    z-index: 999;
    /* background-color: var(--bg); */
    /* backdrop-filter: blur(14px); */
}

.mobile-nav {
    display: none;
}

.nav-logo {
    width: 110px;
    transition: scale .3s ease;
    /* flex-shrink: 0; */
}

.nav-logo img {
    width: 100%;
}

.nav-logo:hover {
    scale: 1.2;
}

header nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

header nav ul {
    display: flex;
    gap: 50px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: var(--cf);
}

header nav ul li a:hover {
    text-decoration: underline;
}

.ig-logo {
    width: max-content;
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.ig-logo > * {
    transition: scale .3s ease;
}
.ig-logo > *:hover {
    scale: 1.1;
}

#menu {
    all: unset;
    color: var(--cf);
    cursor: pointer;
    display: none;
}

.ig-logo img {
    height: 26px;
    width: auto;
}

/*  */

.heading {
    position: relative;
    font-weight: normal;
    font-family: var(--font-focus2);
    width: fit-content;
    color: var(--cf);
    font-size: clamp(32px, 10vw, 142px);
    text-wrap: nowrap;
    margin-bottom: 22px;
}

.section {
    padding: 0 var(--side-padding);
    margin: 40px 0;
    width: 100%;
}

/*  */

.social {
    padding: 0 var(--side-padding);
    margin-top: 120px;
    position: relative;
    z-index: 5;
}

.social .heading {
    font-size: 60px;
}

.social-links-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 14px;
}

.socials-heading {
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--cf);
    font-weight: 500;
    letter-spacing: .5px;
}

.social-links-container a {
    display: inline-block;
    font-size: 18px;
    color: inherit;
    text-decoration: none;
    text-wrap: nowrap;
}

.social-links-container a span {
    text-decoration: underline;
    transition: font-weight 200ms ease, color 200ms ease;
}
.social-links-container a:hover span {
    font-weight: bold;
    color: var(--cf);
}

.social-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.social-links-container > a {
    position: relative;
    transition: scale 200ms ease;
}

.social-links-container > a:hover {
    scale: 1.1;
}

.social-links-container > a img {
    height: 26px;
    width: auto;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-end;
}

.footer-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    max-width: 81vw;
}

.footer-logo-container img {
    width: 100%;
}

#footer-logo {
    position: absolute;
    height: 60%;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.9));
}

.copyright-text {
    text-align: right;
    font-size: 18px;
    padding-right: 24px;
    margin-bottom: 40px;
}

.copyright-text a {
    color: var(--cf);
    text-decoration: none;
}

.copyright-text a:hover {
    text-decoration: underline;
}

@media (max-width: 1372px) {
    :root {
        --side-padding: 100px;
    }
}
@media (max-width: 1198px) {
    :root {
        --header-height: 100px;
        --side-padding: 60px;
    }
    .social {
        padding: 0 80px;
    }
}
@media (max-width: 1134px) {
    .social-links-container a span {
        text-decoration: none;
    }
    .social-flex {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 20px;
        padding-bottom: 10px;
    }
    .socials-heading {
        display: none;
    }
    .social {
        margin-top: 70px;
    }
    .copyright-text p {
        text-align: left;
    }
    .footer-logo-container {
        margin-left: -16px;
    }
}
@media (max-width: 870px) {
    nav {
        font-size: 16px;
    }
    .social .heading {
        font-size: 54px;
    }
}
@media (max-width: 834px) {
    .social .heading {
        font-size: 50px;
    }
}
@media (max-width: 780px) {
    header {
        background-color: var(--bg);
    }
    header nav ul {
        gap: 30px;
    }
}
@media (max-width: 756px) {
    .social .heading {
        font-size: clamp(36px, 7vw, 50px);
    }
}
@media (max-width: 730px) {
    .social {
        margin-top: 80px;
    }
    .social-flex {
        padding-bottom: 26px;
    }
}
@media (max-width: 720px) {
    nav {
        display: none;
    }
    #menu {
        display: block;
    }
    .mobile-nav {
        display: flex;
    }
    .mobile-nav {
        position: absolute;
        right: 0;
        left: auto;
        top: 100%;
        transform: translate(110% ,0);
        z-index: 999;
        transition: transform 200ms ease;
    }

    .mobile-nav.active {
        transform: translate(0, 0);
    }

    .mobile-nav ul {
        flex-direction: column;
        gap: 8px;
        padding: 20px 30px;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .mobile-nav ul li {
        text-wrap: nowrap;
        border-radius: 10px;
        box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
        padding: 14px 20px;
    }
    .mobile-nav ul li:nth-child(even) {
        rotate: 5deg;
        background-color: var(--bg-light);
        backdrop-filter: blur(4px);
    }
    .mobile-nav ul li:nth-child(odd) {
        background-color: var(--bg-dark);
        rotate: -5deg;
    }
}
@media (max-width: 710px) {
    :root {
        --side-padding: 60px;
    }
    .social {
        padding: 0 60px;
    }
}

@media (max-width: 530px) {
    :root {
        --side-padding: 42px;
    }
    .social {
        padding: 0 42px;
    }
}
@media (max-width: 470px) {
    .ig-logo,
    .social-links-container {
        gap: 20px;
    }
    .social-links-container > a img,
    .ig-logo img {
        height: 20px;
    }
}
@media (max-width: 364px) {
    .social .heading {
        font-size: 30px;
    }
}