@font-face {
  font-family: "Neco";
  src: url("../images/assets/fonts/Neco-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neco";
  src: url("../images/assets/fonts/Neco-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neco";
  src: url("../images/assets/fonts/Neco-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(141, 84, 89, 0.42) 0%,
      rgba(55, 28, 31, 0.2) 35%,
      transparent 70%
    ),
    #070606;

  color: #ffffff;
  font-family: "Neco", Arial, Helvetica, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

button {
  font: inherit;
}

/* HAMBURGER BUTTON */

.menu-button {
  position: fixed;
  top: 28px;
  left: 28px;
  z-index: 50;

  display: flex;
  width: 54px;
  height: 48px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 10px;

  background: #c98291;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);

  cursor: pointer;

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.menu-button:hover {
  background: #d3919f;
  transform: scale(1.05);
}

.menu-button span {
  width: 30px;
  height: 4px;

  border-radius: 999px;
  background: #28171b;
}

/* TOP-RIGHT LOGO */

.site-logo {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 50;
}

.site-logo img {
  display: block;
  width: 150px;
  height: auto;
}

/* SIDE MENU */

.menu-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.menu-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.side-menu {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 14px;

  display: flex;
  width: min(320px, calc(100vw - 28px));
  flex-direction: column;
  gap: 14px;

  padding: 35px 28px;

  border: 1px solid rgba(226, 160, 173, 0.35);
  border-radius: 24px;

  background: rgba(18, 13, 15, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);

  transform: translateX(-110%);

  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.open .side-menu {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 14px;
  right: 18px;

  border: none;

  background: transparent;
  color: #ffffff;

  font-size: 42px;
  cursor: pointer;
}

.menu-logo {
  width: 250px;
  height: auto;
  margin: 10px auto 28px;
}

.side-menu a {
  padding: 14px 18px;

  border-radius: 14px;

  color: #ffffff;
  text-decoration: none;

  font-size: 20px;
  font-weight: 500;

  transition:
    background 180ms ease,
    color 180ms ease;
}

.side-menu a:hover,
.side-menu a.active {
  background: #c98291;
  color: #28171b;
}

/* SOCIALS PAGE */

.socials-page {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 165px 0 100px;
}

/* PAGE INTRO */

.socials-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-label,
.social-eyebrow {
  color: #d796a6;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-label {
  display: inline-block;
  padding: 8px 15px;

  border: 1px solid rgba(204, 134, 151, 0.45);
  border-radius: 999px;

  background: rgba(204, 134, 151, 0.1);
}

.socials-intro h1 {
  margin: 20px 0 12px;

  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
}

.socials-intro p {
  color: rgba(255, 255, 255, 0.7);

  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}

/* SOCIAL CARDS */

.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  margin-top: 58px;
}

.social-card {
  position: relative;

  display: flex;
  min-height: 245px;
  align-items: flex-end;
  overflow: hidden;

  padding: 30px;

  border: 1px solid rgba(204, 134, 151, 0.24);
  border-radius: 27px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(204, 134, 151, 0.19),
      transparent 45%
    ),
    rgba(19, 14, 16, 0.92);

  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);

  color: #ffffff;
  text-decoration: none;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

a.social-card:hover,
a.social-card:focus-visible {
  border-color: rgba(215, 150, 166, 0.7);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.42);
  transform: translateY(-5px);
}

/* FEATURED YOUTUBE CARD */

.social-card-featured {
  grid-column: 1 / -1;

  align-items: center;
  min-height: 320px;
  padding: clamp(32px, 6vw, 65px);

  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(204, 134, 151, 0.42),
      transparent 35%
    ),
    linear-gradient(120deg, rgba(74, 35, 43, 0.84), rgba(17, 13, 14, 0.96) 65%);
}

/* CARD ICONS */

.social-icon {
  position: absolute;
  top: 28px;
  right: 28px;

  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;

  border-radius: 20px;

  background: #cc8697;
  color: #170e10;

  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
}

.social-card-featured .social-icon {
  position: static;

  flex: 0 0 auto;

  width: clamp(95px, 13vw, 145px);
  height: clamp(95px, 13vw, 145px);
  margin-right: clamp(28px, 5vw, 58px);

  border-radius: 50%;

  font-size: clamp(38px, 5vw, 58px);
}

/* CARD TEXT */

.social-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-title,
.commission-title {
  display: block;
  margin: 9px 0 8px;

  font-size: clamp(29px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
}

.social-description,
.commission-description {
  display: block;
  max-width: 560px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
  line-height: 1.55;
}

.social-action {
  display: inline-flex;
  gap: 9px;
  align-items: center;

  margin-top: 25px;

  color: #f0bdc9;
  font-weight: 700;
}

.social-action span,
.commission-action span {
  transition: transform 180ms ease;
}

a.social-card:hover .social-action span,
.commissions-banner:hover .commission-action span {
  transform: translateX(5px);
}

/* COMMISSIONS BANNER */

.commissions-banner {
  display: flex;
  gap: 28px;
  align-items: center;

  margin-top: 22px;
  padding: 34px 38px;

  border: 1px solid rgba(204, 134, 151, 0.35);
  border-radius: 27px;

  background: linear-gradient(
    110deg,
    rgba(107, 55, 67, 0.58),
    rgba(24, 16, 18, 0.94)
  );

  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);

  color: #ffffff;
  text-decoration: none;

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.commissions-banner:hover,
.commissions-banner:focus-visible {
  border-color: rgba(215, 150, 166, 0.78);
  transform: translateY(-4px);
}

.commission-icon {
  display: grid;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  place-items: center;

  border-radius: 23px;

  background: #cc8697;
  color: #170e10;

  font-family: Arial, sans-serif;
  font-size: 34px;
}

.commission-copy {
  flex: 1;
}

.commission-title {
  font-size: clamp(25px, 3vw, 36px);
}

.commission-action {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;

  color: #f0bdc9;
  font-weight: 700;
}

/* SOCIAL ICON DETAILS */


.instagram-icon svg {
  width: 60px;
  height: auto;
  fill: #170e10;
}

.discord-icon img,
.linktree-icon img {
  width: 80%;
  height: auto;
}

.play-icon img {
  width: 60%;
  height: auto;
}

.vrchat-icon img{
    width: 100%;
    height: auto;
}

.coming-soon-button {
    position: relative;
}

.coming-soon-button::after {
    content: "COMING SOON";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);

    background: #00000067;
    color: #c58b91;
    border: 2px solid #c58b91;
    border-radius: 10px;
    padding: 20px 30px;

    font-size: 60px;
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;

    z-index: 100;
    pointer-events: none;
}

/* TABLET AND MOBILE */

@media (max-width: 760px) {
  .socials-page {
    width: min(90vw, 560px);
    padding: 125px 0 75px;
  }

  .socials-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .social-card-featured {
    grid-column: auto;

    min-height: 370px;
    align-items: flex-start;
    padding: 30px;
  }

  .social-card-featured .social-icon {
    position: absolute;
    top: 28px;
    right: 28px;

    width: 82px;
    height: 82px;
    margin: 0;

    font-size: 34px;
  }

  .social-card-featured .social-card-content {
    align-self: flex-end;
  }

  .commissions-banner {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px;
  }

  .commission-copy {
    flex: 1 1 calc(100% - 105px);
  }

  .commission-action {
    width: 100%;
    margin-top: 5px;
  }

  .play-icon::before {
    margin-left: 5px;

    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 27px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .menu-button {
    top: 18px;
    left: 18px;

    width: 48px;
    height: 43px;
  }

  .site-logo {
    top: 18px;
    right: 18px;
  }

  .site-logo img {
    width: 120px;
  }

  .socials-intro h1 {
    font-size: 46px;
  }
}