/* =========================================
   BASIC
========================================= */

@import url(
  'https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+SC:wght@400;500;700;900&display=swap'
);

:root {
  --black: #0b0b0b;
  --dark: #111111;
  --white: #f4f1e8;
  --orange: #ff4e19;
  --green: #8bff52;
  --gray: #999;
  --line: rgba(255,255,255,.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Noto Sans SC", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

button {
  font: inherit;
}

::selection {
  background: var(--orange);
  color: #fff;
}


/* =========================================
   NAV
========================================= */

.navbar {
  height: 74px;
  padding: 0 4vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  background: rgba(0,0,0,.88);
  backdrop-filter: blur(14px);

  z-index: 999;

  border-bottom: 1px solid rgba(255,255,255,.12);
}

.logo {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  font-style: italic;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  font-family: "Anton";
  font-size: 13px;
  letter-spacing: 1px;

  position: relative;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--orange);

  transition: .3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;

  font-family: "Anton";
  font-size: 13px;
}

.search {
  font-size: 20px;
}

.menu-icon {
  font-size: 21px;
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 920px;

  position: relative;

  display: grid;

  grid-template-columns:
    1fr
    2.5fr
    1fr;

  align-items: center;

  padding: 100px 4vw 50px;

  background:
    url("images/hero.jpg")
    center / cover
    no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.8),
      rgba(0,0,0,.15),
      rgba(0,0,0,.8)
    );
}

.hero > *:not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.hero-side {
  align-self: stretch;

  padding-top: 100px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hand-text {
  font-family: cursive;
  font-size: 32px;
  line-height: 1;

  transform: rotate(-8deg);

  opacity: .7;
}

.hero-slogan {
  margin-top: 220px;

  font-family: "Anton";
  font-size: 26px;

  line-height: 1.1;
}

.orange-script {
  margin-top: 30px;

  color: var(--orange);

  font-family: cursive;
  font-size: 24px;
}

.hero-center {
  text-align: center;

  align-self: flex-end;

  padding-bottom: 100px;
}

.hero-center h1 {
  font-family: "Anton";
  font-size: clamp(100px, 12vw, 240px);

  line-height: .75;

  letter-spacing: -5px;

  transform: rotate(-4deg);

  text-shadow:
    7px 7px 0 rgba(0,0,0,.5);
}

.hero-center h2 {
  color: var(--orange);

  font-size: clamp(50px, 5vw, 100px);

  font-weight: 900;

  margin-top: 20px;

  transform: rotate(-5deg);
}

.hero-center p {
  font-family: "Anton";
  font-size: 25px;

  letter-spacing: 1px;
}

.hero-right {
  align-items: flex-end;
  text-align: right;
}

.hero-right blockquote {
  font-size: 24px;
  font-weight: 700;

  line-height: 1.5;

  border-right: 3px solid var(--orange);

  padding-right: 18px;
}

.hero-info {
  margin-top: auto;

  padding-bottom: 140px;

  text-align: left;
}

.hero-info strong {
  font-family: "Anton";
  font-size: 25px;
}

.hero-info p {
  font-size: 12px;
  margin-top: 5px;
}

.scroll-tip {
  position: absolute;
  z-index: 5;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  font-family: "Anton";
  font-size: 13px;

  animation: scrollMove 1.4s infinite;
}

@keyframes scrollMove {

  0%,
  100% {
    transform:
      translate(-50%, 0);
  }

  50% {
    transform:
      translate(-50%, 7px);
  }

}


/* =========================================
   GLOBAL SECTION
========================================= */

.section {
  padding:
    30px
    4vw
    60px;

  border-top:
    1px solid var(--line);
}

.section-light {
  background: var(--white);
  color: var(--black);

  padding:
    30px
    4vw
    60px;
}

.section-heading {
  display: flex;
  align-items: center;

  gap: 10px;

  font-family: "Anton";
  font-size: 19px;

  margin-bottom: 28px;
}

.section-heading span {
  color: var(--orange);
}

.dark-text {
  color: var(--black);
}

.outline-btn,
.dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 25px;

  padding:
    11px
    18px;

  border:
    1px solid rgba(255,255,255,.65);

  font-family: "Anton";
  font-size: 12px;

  margin-top: 25px;

  transition: .25s;
}

.outline-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.dark-btn {
  color: var(--black);
  border: 1px solid #111;
}

.dark-btn:hover {
  background: var(--black);
  color: white;
}


/* =========================================
   CITY
========================================= */

.city-section {
  min-height: 520px;
}

.city-grid {
  display: grid;

  grid-template-columns:
    1.2fr
    .55fr
    2.2fr
    1fr
    1.15fr;

  gap: 20px;

  align-items: stretch;
}

.city-intro h2 {
  font-size: clamp(70px, 7vw, 145px);
  line-height: .85;
  font-weight: 900;
}

.city-intro h3 {
  font-family: "Anton";
  font-size: 30px;
  margin-top: 15px;
}

.city-intro p {
  margin-top: 25px;

  font-size: 15px;
  line-height: 1.9;

  color: #bbb;
}

.city-image {
  position: relative;
  overflow: hidden;

  min-height: 380px;
}

.city-image img {
  height: 100%;

  filter:
    grayscale(100%)
    contrast(1.3);
}

.city-image span {
  position: absolute;
  bottom: 20px;
  left: 15px;

  font-family: "Anton";
  font-size: 21px;

  color: rgba(255,255,255,.45);
}

.map-box {
  position: relative;

  background: #111;

  overflow: hidden;
}

.map-box img {
  height: 100%;

  opacity: .55;

  filter:
    grayscale(1)
    contrast(1.3);
}

.map-pin {
  position: absolute;

  font-weight: 700;

  color: #fff;

  font-size: 13px;
}

.pin-one {
  top: 26%;
  left: 22%;
}

.pin-two {
  top: 47%;
  left: 29%;
}

.pin-three {
  top: 34%;
  right: 17%;
}

.main-pin {
  bottom: 30%;
  left: 49%;

  color: var(--orange);

  font-size: 16px;
}

.city-history {
  display: flex;
  flex-direction: column;

  gap: 28px;

  padding: 15px;
}

.small-title {
  font-family: "Anton";
  font-size: 12px;
}

.city-event strong {
  font-family: "Anton";
  font-size: 24px;
}

.city-event p {
  color: #aaa;

  font-size: 13px;

  margin-top: 4px;
}

.city-photo {
  position: relative;
}

.city-photo img {
  height: 80%;

  filter:
    grayscale(1);
}

.city-photo p {
  font-size: 19px;

  font-weight: 600;

  margin-top: 15px;
}


/* =========================================
   MEMBERS
========================================= */

.members-grid {
  display: grid;

  grid-template-columns:
    .75fr
    1.5fr
    1.5fr
    1.5fr
    1fr;

  gap: 15px;
}

.members-title {
  padding: 30px 10px;
}

.members-title p {
  font-family: "Anton";
  font-size: 24px;

  line-height: 1.25;
}

.signature {
  display: block;

  margin-top: 50px;

  font-family: cursive;
  font-size: 40px;

  transform: rotate(-10deg);

  color: #777;
}

.member-card {
  background: var(--black);

  color: white;

  overflow: hidden;

  border: 1px solid #333;
}

.member-image {
  height: 360px;

  overflow: hidden;
}

.member-image img {
  height: 100%;

  filter:
    grayscale(1)
    contrast(1.15);

  transition: .45s;
}

.member-card:hover img {
  transform: scale(1.08);

  filter:
    grayscale(0)
    contrast(1.15);
}

.member-content {
  padding: 18px;
}

.member-content h3 {
  font-family: "Anton";
  font-size: clamp(27px, 2vw, 43px);

  line-height: 1;
}

.cn-name {
  margin-top: 8px;

  font-weight: 700;
}

.member-content small {
  display: block;

  margin-top: 4px;

  color: #aaa;
}

.member-content a {
  display: inline-block;

  margin-top: 20px;

  padding: 7px 11px;

  border: 1px solid #555;

  font-family: "Anton";

  font-size: 11px;
}

.member-content a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.member-quote {
  padding: 40px 25px;

  background:
    linear-gradient(
      rgba(244,241,232,.9),
      rgba(244,241,232,.9)
    ),
    url("images/member-back.jpg")
    center/cover;
}

.member-quote h3 {
  font-size: 28px;

  line-height: 1.5;
}

.member-quote p {
  font-family: "Anton";

  margin-top: 20px;

  font-size: 14px;
}


/* =========================================
   MUSIC
========================================= */

.music-layout {
  display: grid;

  grid-template-columns:
    1.1fr
    3fr
    1.35fr;

  gap: 40px;

  align-items: center;
}

.music-intro h2 {
  font-family: "Anton";

  font-size: clamp(44px, 4vw, 80px);

  line-height: .95;
}

.music-intro p {
  font-family: "Anton";

  margin-top: 15px;
}

.album-list {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 25px;
}

.album-art {
  position: relative;

  padding-right: 30px;
}

.album-art img {
  position: relative;

  z-index: 2;

  aspect-ratio: 1/1;

  transition: .3s;
}

.vinyl {
  width: 85%;
  aspect-ratio: 1;

  border-radius: 50%;

  position: absolute;

  right: 0;
  top: 7%;

  background:
    repeating-radial-gradient(
      circle,
      #222,
      #222 2px,
      #080808 3px,
      #080808 6px
    );

  transition: .5s;
}

.album:hover .vinyl {
  transform:
    translateX(20px)
    rotate(70deg);
}

.album:hover img {
  transform:
    translateX(-5px);
}

.album h3 {
  font-size: 18px;

  margin-top: 14px;
}

.album span {
  color: #aaa;

  font-family: "Anton";

  font-size: 12px;
}

.music-player {
  border:
    1px solid #555;

  padding: 20px;

  min-height: 250px;
}

.player-top {
  display: flex;
  gap: 15px;

  align-items: center;
}

.player-top img {
  width: 70px;
  height: 70px;
}

.player-top small {
  color: #999;

  font-size: 10px;
}

.player-top h4 {
  font-size: 18px;
}

.player-progress {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-top: 40px;

  font-size: 10px;
}

.progress-bar {
  flex: 1;

  height: 2px;

  background: #555;
}

.progress-bar i {
  display: block;

  width: 35%;
  height: 100%;

  background: var(--orange);
}

.player-controls {
  margin-top: 30px;

  display: flex;

  justify-content: center;

  gap: 18px;
}

.player-controls button {
  background: none;
  border: 0;
  color: white;

  cursor: pointer;
}

.play-btn {
  width: 42px;
  height: 42px;

  border:
    1px solid white !important;

  border-radius: 50% !important;
}


/* =========================================
   HISTORY
========================================= */

.history-section {
  padding-bottom: 70px;
}

.history-layout {
  display: grid;

  grid-template-columns:
    1fr
    3.7fr;

  gap: 45px;
}

.history-title h2 {
  font-family: "Anton";

  font-size: clamp(60px, 6vw, 120px);

  line-height: .9;
}

.history-title p {
  margin-top: 25px;

  font-size: 18px;
}

.timeline {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(6,1fr);

  gap: 18px;

  padding-top: 5px;
}

.timeline::before {
  content: "";

  position: absolute;

  top: 8px;
  left: 0;
  right: 0;

  height: 1px;

  background: #999;
}

.timeline-item {
  position: relative;

  padding-top: 25px;
}

.dot {
  position: absolute;

  top: 3px;
  left: 0;

  width: 11px;
  height: 11px;

  border-radius: 50%;

  background: #111;
}

.timeline-item strong {
  font-family: "Anton";

  font-size: 18px;
}

.timeline-item p {
  min-height: 42px;

  font-size: 12px;

  font-weight: 700;
}

.timeline-item img {
  margin-top: 13px;

  aspect-ratio: 1.3;

  filter:
    grayscale(1)
    contrast(1.15);

  transition: .3s;
}

.timeline-item:hover img {
  filter: grayscale(0);

  transform:
    translateY(-5px);
}


/* =========================================
   LANGUAGE
========================================= */

.language-section {
  min-height: 500px;

  padding: 30px 4vw 60px;

  position: relative;

  background:
    url("images/dialect-bg.jpg")
    center/cover
    no-repeat;
}

.language-overlay {
  position: absolute;

  inset: 0;

  background:
    rgba(0,0,0,.7);
}

.language-section > *:not(.language-overlay) {
  position: relative;

  z-index: 2;
}

.language-layout {
  display: grid;

  grid-template-columns:
    1.1fr
    3fr
    1fr;

  gap: 30px;

  align-items: center;
}

.language-intro h2 {
  font-family: "Anton";

  font-size: clamp(55px, 5vw, 90px);

  line-height: .9;
}

.language-intro h3 {
  font-size: 21px;

  margin-top: 10px;
}

.language-intro p {
  margin-top: 30px;

  color: #ccc;

  line-height: 1.8;
}

.dialect-words {
  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 20px;
}

.dialect-item {
  text-align: center;
}

.dialect-item strong {
  display: block;

  font-size: clamp(75px, 7vw, 140px);

  font-family: cursive;

  transition:
    transform .3s,
    color .3s;
}

.dialect-item:hover strong {
  color: var(--orange);

  transform:
    rotate(-6deg)
    scale(1.12);
}

.dialect-item button {
  width: 38px;
  height: 38px;

  border: 1px solid white;

  border-radius: 50%;

  background: transparent;

  color: white;

  margin-top: 20px;

  cursor: pointer;
}

.language-note {
  border-left:
    1px solid rgba(255,255,255,.3);

  padding-left: 25px;
}

.language-note h3 {
  font-size: 50px;
}

.language-note p {
  margin-top: 20px;

  line-height: 1.8;
}

.language-note span {
  display: block;

  color: var(--orange);

  font-family: cursive;

  font-size: 24px;

  margin-top: 20px;
}


/* =========================================
   ARCHIVE
========================================= */

.archive {
  padding-bottom: 70px;
}

.archive-layout {
  display: grid;

  grid-template-columns:
    1fr
    4fr
    .6fr;

  gap: 30px;

  align-items: center;
}

.archive-intro h2 {
  font-size: 30px;
}

.archive-intro p {
  font-family: "Anton";

  font-size: 13px;

  line-height: 1.6;

  margin-top: 20px;
}

.archive-grid {
  display: grid;

  grid-template-columns:
    1fr
    1.4fr
    1.5fr
    1.2fr;

  grid-template-rows:
    130px
    130px;

  gap: 7px;
}

.archive-grid img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter:
    grayscale(.35)
    contrast(1.1);

  transition: .3s;
}

.archive-grid img:hover {
  filter: grayscale(0);

  transform: scale(.98);
}

.a1 {
  grid-row: 1/3;
}

.a2 {
  grid-column: 2;
}

.a3 {
  grid-column: 3;
}

.a4 {
  grid-column: 4;

  grid-row: 1/3;
}

.a5 {
  grid-column: 2;
}

.a6 {
  grid-column: 3;
}

.archive-tags {
  font-family: "Anton";

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  min-height: 370px;

  position: relative;

  padding:
    60px
    4vw
    100px;

  background:
    url("images/footer.jpg")
    center/cover
    no-repeat;
}

.footer-overlay {
  position: absolute;

  inset: 0;

  background:
    rgba(0,0,0,.72);
}

.footer-main,
.footer-bottom {
  position: relative;

  z-index: 2;
}

.footer-main {
  display: grid;

  grid-template-columns:
    1.5fr
    1.5fr
    1fr;

  gap: 30px;

  align-items: center;
}

.footer-logo {
  font-family: "Anton";

  font-size: 60px;

  font-style: italic;
}

.footer-main h2 {
  font-family: "Anton";

  font-size: 42px;

  line-height: 1;
}

.footer-middle {
  font-size: 24px;

  font-weight: 600;

  line-height: 1.6;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  font-family: "Anton";

  line-height: 1.4;
}

.footer-bottom {
  margin-top: 80px;

  border-top:
    1px solid rgba(255,255,255,.25);

  padding-top: 20px;

  display: flex;

  justify-content: space-between;

  font-size: 10px;

  color: #aaa;
}


/* =========================================
   FIXED PLAYER
========================================= */

.fixed-player {
  position: fixed;

  z-index: 1000;

  left: 0;
  bottom: 0;

  width: 100%;

  height: 76px;

  background:
    rgba(8,8,8,.96);

  backdrop-filter: blur(14px);

  border-top:
    1px solid #333;

  padding:
    10px
    4vw;

  display: grid;

  grid-template-columns:
    1fr
    .5fr
    1fr;

  align-items: center;
}

.fixed-song {
  display: flex;

  align-items: center;

  gap: 15px;
}

.fixed-song img {
  width: 48px;
  height: 48px;
}

.fixed-song strong {
  font-size: 12px;
}

.mini-progress {
  width: 180px;

  height: 2px;

  margin-top: 8px;

  background: #444;
}

.mini-progress span {
  display: block;

  width: 40%;
  height: 100%;

  background: white;
}

.time {
  text-align: center;

  font-size: 10px;

  color: #999;
}

.fixed-controls {
  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 24px;
}

.fixed-controls button {
  background: none;
  border: 0;

  color: white;

  cursor: pointer;
}

.big-control {
  width: 38px;
  height: 38px;

  border-radius: 50% !important;

  background: white !important;

  color: black !important;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .nav-links {
    gap: 20px;
  }

  .city-grid {
    grid-template-columns:
      1fr
      1fr;
  }

  .city-intro,
  .map-box {
    grid-column: span 1;
  }

  .members-grid {
    grid-template-columns:
      repeat(3,1fr);
  }

  .members-title {
    grid-column: 1 / -1;
  }

  .member-quote {
    display: none;
  }

  .music-layout {
    grid-template-columns: 1fr;
  }

  .album-list {
    grid-template-columns:
      repeat(4,1fr);
  }

  .history-layout {
    grid-template-columns: 1fr;
  }

  .language-layout {
    grid-template-columns: 1fr;
  }

  .archive-layout {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 800px) {

  .navbar {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 800px;

    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero-left,
  .hero-right {
    display: none;
  }

  .hero-center {
    align-self: center;

    padding-bottom: 0;
  }

  .hero-center h1 {
    font-size: 90px;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .member-image {
    height: 500px;
  }

  .album-list {
    grid-template-columns:
      repeat(2,1fr);
  }

  .timeline {
    grid-template-columns:
      repeat(2,1fr);
  }

  .timeline::before {
    display: none;
  }

  .dialect-words {
    grid-template-columns:
      repeat(2,1fr);
  }

  .archive-grid {
    grid-template-columns:
      repeat(2,1fr);

    grid-template-rows:
      repeat(3,180px);
  }

  .archive-grid img {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .footer-main {
    grid-template-columns: 1fr;

    text-align: left;
  }

  .footer-right {
    text-align: left;
  }

  .fixed-player {
    grid-template-columns:
      1fr auto;

    height: 68px;
  }

  .time {
    display: none;
  }

  .fixed-controls button:not(.big-control) {
    display: none;
  }

}