/* ========================================
   BASE
======================================== */

:root {
  --black: #050505;
  --dark: #0a0a0c;
  --card: #101012;
  --white: #f5f5f5;
  --muted: #b7b7bd;

  --purple: #a63cff;
  --purple-light: #bd62ff;

  --red: #ff1616;

  --placeholder: #55565a;
  --placeholder-dark: #333438;

  --max-width: 1440px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ========================================
   LOGO
======================================== */

.logo,
.footer-logo {
  display: inline-block;
}

.logo-main {
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: .5px;
  line-height: 1;
}

.logo-main span {
  color: white;
}

.logo-main strong {
  color: var(--red);
  font-weight: 900;

  font-family: "Archivo Black";
}

.logo-sub {
  margin-top: 9px;
  padding-left: 12%;
  font-size: clamp(9px, 0.9vw, 14px);
  letter-spacing: 0.7em;
}


/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  min-height: 820px;
  height: 82vh;
  max-height: 1050px;
  overflow: hidden;
  background: #111;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      120deg,
      var(--placeholder-dark),
      var(--placeholder) 55%,
      #3c3c40
    );

  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.3em;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.94) 0%,
      rgba(0,0,0,0.72) 34%,
      rgba(0,0,0,0.12) 67%,
      rgba(0,0,0,0.3) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,0.8) 0%,
      transparent 30%
    );
}

.hero-image-placeholder {
  background:
    url("assets/g_hero.PNG")
    center 25% / cover no-repeat;
}

.hero-image-placeholder span {
  display: none;
}

.city-placeholder {
  background:
    url("assets/city_line.PNG")
    center / cover no-repeat;
}

.city-placeholder span {
  display: none;
}
/* ========================================
   HEADER
======================================== */

.site-header {
  position: relative;
  z-index: 5;

  width: min(92%, var(--max-width));
  margin: auto;
  padding-top: 44px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.desktop-nav i {
  display: block;

  width: 2px;
  height: 23px;

  background: var(--purple);
}


/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
  position: relative;
  z-index: 4;

  width: min(92%, var(--max-width));
  height: calc(100% - 100px);

  margin: auto;

  display: flex;
  align-items: center;
}

.hero-copy {
  margin-top: 40px;
}

.hero-copy h1 {
  font-family: "Permanent Marker", cursive;

  font-size: clamp(50px, 6.5vw, 105px);
  font-weight: 400;
  line-height: 0.88;

  transform: rotate(-3deg);
}

.hero-copy h1 span {
  color: var(--purple-light);
}

.hero-copy p {
  margin-top: 50px;

  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.22em;
}

.pillars {
  margin-top: 65px;

  display: flex;
  gap: 32px;
  align-items: center;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.pillars b {
  color: var(--purple);
}

.host-label {
  position: absolute;

  right: 3%;
  bottom: 7%;

  display: flex;
  flex-direction: column;
  gap: 8px;

  letter-spacing: 0.3em;
}

.host-label strong {
  font-size: 15px;
}

.host-label span {
  width: fit-content;

  padding-bottom: 8px;

  color: #ccc;

  font-size: 10px;

  border-bottom: 3px solid var(--purple);
}


/* ========================================
   WATCH SECTION
======================================== */

.watch {
  padding: 55px 5% 80px;

  background:
    radial-gradient(
      circle at center,
      #17171a,
      #080809 65%
    );
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.5em;
}

.purple-line {
  width: 85px;
  height: 3px;

  margin: 20px auto 45px;

  background: var(--purple);
}

.social-grid {
  width: min(100%, 1300px);

  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.social-card {
  min-height: 120px;

  padding: 25px 28px;

  display: flex;
  align-items: center;
  gap: 24px;

  border: 1px solid #3c3c40;
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.025),
      rgba(255,255,255,0)
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.social-card:hover {
  transform: translateY(-4px);

  border-color: var(--purple);

  background: #151518;
}

.social-icon {
  width: 62px;
  height: 62px;

  flex: 0 0 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 27px;
  font-weight: 800;
}

.youtube {
  background: #ff0000;
}

.instagram {
  background:
    radial-gradient(
      circle at 70% 70%,
      #ffd600,
      #ff0169 45%,
      #7638fa 80%
    );
}

.tiktok {
  background: #111;

  border: 1px solid #444;

  text-shadow:
    2px 1px #ff0050,
    -2px -1px #00f2ea;
}

.social-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.social-copy small {
  font-size: 10px;
  letter-spacing: 0.25em;
}

.social-copy strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.arrow {
  margin-left: auto;

  font-size: 28px;
}


/* ========================================
   MESSAGE
======================================== */

.message {
  position: relative;

  min-height: 390px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.city-placeholder {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
    color: #aaa;
  font-size: 12px;
  letter-spacing: 0.3em;
}

.message-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.72)
    );
}

.message-copy {
  position: relative;
  z-index: 2;

  transform: rotate(-3deg);
}

.message-copy h2 {
  font-family: "Permanent Marker", cursive;

  font-size: clamp(36px, 4vw, 65px);
  font-weight: 400;
  line-height: 1;
}

.message-copy h2 span {
  color: var(--purple-light);
}

.brush-line {
  width: 230px;
  height: 7px;

  margin: 15px 0 0 50px;

  background: var(--purple);

  transform: rotate(-5deg);
}


/* ========================================
   FOOTER
======================================== */

footer {
  width: min(92%, var(--max-width));

  min-height: 190px;

  margin: auto;
  padding: 50px 0;

  display: flex;
  align-items: center;
  gap: 55px;
}

.footer-logo .logo-main {
  font-size: 25px;
  letter-spacing: .5px;
}

.footer-logo .logo-sub {
  font-size: 8px;
}

.footer-divider {
  width: 1px;
  height: 70px;

  background: #777;
}

footer p {
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.3em;
}

.footer-cta {
  margin-left: auto;

  display: flex;
  align-items: center;
  gap: 22px;
}

.headphones {
  color: var(--purple);

  font-size: 40px;
}

.footer-cta span {
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.2em;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

  .hero {
    min-height: 760px;
    height: auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-content {
    min-height: 660px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,0.93),
        rgba(0,0,0,0.4)
      ),
      linear-gradient(
        0deg,
        rgba(0,0,0,0.85),
        transparent
      );
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  footer {
    flex-wrap: wrap;
  }

  .footer-cta {
    margin-left: 0;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

  .site-header {
    width: 90%;
    padding-top: 25px;
  }

  .logo-main {
    font-size: 23px;
  }

  .logo-sub {
    font-size: 8px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image-placeholder {
    align-items: flex-start;

    padding-top: 170px;

    font-size: 10px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.45) 60%,
        rgba(0,0,0,0.3) 100%
      );
  }

  .hero-content {
    width: 90%;

    min-height: 650px;

    align-items: flex-end;

    padding-bottom: 110px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 15vw, 50px);
  }

  .hero-copy p {
    margin-top: 35px;

    font-size: 11px;
  }

  .pillars {
    margin-top: 35px;

    gap: 13px;

    font-size: 8px;
  }

  .host-label {
    right: auto;
    left: 0;
    bottom: 35px;
  }

  .host-label strong {
    font-size: 10px;
  }

  .watch {
    padding: 45px 20px 60px;
  }

  .section-title h2 {
    font-size: 13px;
    letter-spacing: 0.35em;
  }

  .social-card {
    min-height: 95px;

    padding: 18px;

    gap: 16px;
  }

  .social-icon {
    width: 50px;
    height: 50px;

    flex-basis: 50px;

    font-size: 22px;
  }

  .social-copy strong {
    font-size: 14px;
  }

  .arrow {
    font-size: 22px;
  }

  .message {
    min-height: 330px;
  }

  .message-copy {
    width: 85%;
  }

  .message-copy h2 {
    font-size: clamp(38px, 12vw, 55px);
  }

  .brush-line {
    width: 160px;
  }

  footer {
    width: 90%;

    padding: 45px 0;

    flex-direction: column;
    align-items: flex-start;

    gap: 30px;
  }

  .footer-divider {
    width: 70px;
    height: 1px;
  }

  .footer-cta {
    margin: 0;
  }

}


/* ========================================
   VERY SMALL PHONES
======================================== */

@media (max-width: 380px) {

  .hero-copy h1 {
    font-size: 40px;
  }

  .pillars {
    letter-spacing: 0.15em;
  }

  .social-card {
    padding: 14px;
  }

  .social-copy small {
    font-size: 8px;
  }

  .social-copy strong {
    font-size: 12px;
  }

}