@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

/* Navbar */

.logo {
  width: 300px;
  height: auto;
  margin-left: 50px;
  cursor: pointer;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  position: fixed;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  transition:
    background-color 0.4s,
    border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(241, 241, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid black;
}

.links {
  margin-right: 80px;

  ul {
    display: flex;
    list-style-type: none;
    gap: 30px;
  }

  a {
    color: black;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

.links ul > li:hover {
  text-decoration: underline tan solid 2px;
  text-underline-offset: 7px;
}

.links ul > a:target {
  text-decoration: underline tan solid 2px;
  text-underline-offset: 7px;
}

.button-div {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.account-btn {
  background-color: #939393;
  color: rgb(255, 255, 255);
  border: 2px solid white;
  font-size: 18px;
  padding: 10px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer; /* Changes the mouse to a hand icon */
  transition: all 0.3s ease;
  i {
    margin-right: 10px;
  }
  a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
  }
}

.account-btn:hover {
  background-color: white;
  color: #777777;
  border: 2px solid #777777;
  a {
    color: #777777;
  }
}

.theme-btn {
  background-color: #939393;
  color: rgb(255, 255, 255);
  border: 2px solid white;
  font-size: 18px;
  padding: 10px;
  border-radius: 40px;
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.theme-btn:hover {
  background-color: white;
  color: #777777;
  border: 2px solid #777777;
  a {
    color: #777777;
  }
}

/* Navbar End*/

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 140px 56px 80px;
  position: relative;
  overflow: hidden;
}

.hero-image-div {
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    object-fit: contain;
    width: 99%;
    border-radius: 60% 63% 53% 63% / 80% 51% 61% 57%;
  }
}

.hero-div {
  width: 50%;
}

.hero-image-border {
  background: url('Background.jpg');
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
  border-radius: 61% 64% 54% 64% / 81% 52% 62% 58%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.6s ease forwards 0.2s;
}

h1 {
  font-family: "Montserrat";
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 1;
  color: black;
  max-width: 780px;
  animation: up 0.7s ease forwards 0.4s;
}

.hero-text {
  margin-top: 32px;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  animation: up 0.7s ease forwards 0.6s;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.7s ease forwards 0.8s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-solid {
  background: rgb(211, 211, 211);
  color: rgb(0, 0, 0);
}
.btn-solid:hover {
  background: tan;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(159, 177, 194, 0.25);
}

.btn-outline {
  background: transparent;
  color: red;
  border: 1px solid black;
}
.btn-outline:hover {
  border-color: gray;
  color: black;
}

/* ── DIVIDER STRIP ── */
.strip {
  overflow: hidden;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 11px 0;
}
.strip-track {
  display: flex;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
}
.strip-item {
  padding: 0 28px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-dot {
  width: 3px;
  height: 3px;
  background: var(--teal);
  border-radius: 50%;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS ── */
section {
  padding: 96px 56px;
}
.s-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 14px;
}
.s-title {
  font-family: "Montserrat";
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}
.s-title i {
  color: tan;
  font-style: italic;
}

/* ── SECTION HEADER ROW ── */
.s-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.s-header-left {
  flex: 1;
}
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  text-decoration: none;
  border: 1px solid rgba(77, 168, 255, 0.2);
  border-radius: 100px;
  padding: 9px 20px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
  margin-bottom: 16px;
}
.view-more:hover {
  border-color: rgba(77, 168, 255, 0.5);
  background: rgba(77, 168, 255, 0.06);
  color: var(--ice);
}
.view-more svg {
  transition: transform 0.2s;
}
.view-more:hover svg {
  transform: translateX(3px);
}

/* ── ARTISTS ── */
#artists {
  background: white;
  max-height: 600px;
  overflow: hidden;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.artist-card {
  background: var(--card);
  padding: 36px 30px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  border: 3px solid black;
  text-align: center; /* Centers the name and description text nicely below avatar */
}

.artist-card:hover {
  background: linear-gradient(135deg, white, #bcbcbc);
}

.artist-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.artist-genre {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* ── RELEASES ── */
#releases {
  background: linear-gradient(135deg, white, #bcbcbc);
}
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.release-card {
  background: rgb(218, 218, 218);
  border: 1px solid gray;
  border-radius: 6px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.release-thumb {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  color: rgba(168, 216, 255, 0.07);
  position: relative;
}
.t {
  background: linear-gradient(145deg, #e8e8e8, rgb(187, 185, 181));
}

.release-info {
  padding: 14px 16px;
}
.release-title {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 3px;
}
.release-artist {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.release-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.r-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(77, 168, 255, 0.2);
  padding: 3px 7px;
  border-radius: 100px;
}
.r-date {
  font-size: 0.62rem;
  color: var(--dim);
}


/* ── ABOUT ── */
#about {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 52px;
}
.about-copy p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-copy p strong {
  color: var(--ice);
  font-weight: 500;
}
.pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.pillar {
  background: var(--card);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.2s;
}
.pillar:hover {
  background: #e6e6e6;
}
.pillar-num {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
  color: rgb(26, 26, 26);
  opacity: 0.4;
  min-width: 28px;
  line-height: 1.4;
}
.pillar h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}
.pillar p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aside-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
}

.btn-solid-1 {
  background: rgb(248, 248, 248);
  color: rgb(0, 0, 0);
  transition: all 0.2s ease-in;
}
.btn-solid-1:hover {
  background: rgb(88, 88, 88);
  color: white;
}

.aside-big {
  font-family: "DM Serif Display", serif;
  font-size: 3.8rem;
  color: black;
  line-height: 1;
  margin-bottom: 6px;
}
.aside-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.aside-quote {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ice);
  line-height: 1.6;
  margin-bottom: 12px;
}
.aside-attr {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.12em;
}

/* ── NEWSLETTER ── */
#newsletter {
  background: linear-gradient(135deg, white, #bcbcbc);
}
.sub-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.sub-wrap .s-label {
  justify-content: center;
}
.sub-wrap .s-title {
  margin-bottom: 14px;
}
.sub-desc {
  font-size: 0.95rem;
  color: black;
  line-height: 1.7;
  margin-bottom: 44px;
}

.sub-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(105, 102, 98);
  margin-bottom: 7px;
}
.field input,
.field select {
  width: 100%;
  background: rgb(222, 222, 222);
  border: 1px solid black;
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: white;
}
.field input::placeholder {
  color: black;
}
.field select {
  appearance: none;
  cursor: pointer;
}
.field select option {
  background: white;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.check-row input {
  width: 15px;
  height: 15px;
  accent-color: var(--sky);
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.check-row label {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.check-row label a {
  color: var(--sky);
  text-decoration: none;
}

.sub-btn {
  background: tan;
  color: black;
  border: none;
  border-radius: 100px;
  border: 1px solid black;
  padding: 15px;
  width: 60%;
  margin: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  margin-top: 4px;
}
.sub-btn:hover {
  background: rgb(222, 222, 222);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.success-state {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--card);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 10px;
}
.success-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.success-state h3 {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.success-state p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 56px 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.footer-brand .logo {
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.socials {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.socials:hover {
  border-color: rgba(77, 168, 255, 0.4);
  color: var(--sky);
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--ice);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.68rem;
  color: var(--dim);
}

.footer-logo {
  width: 200px;
}

/* ── ANIMATIONS ── */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── CMS ARTIST AVATAR EXTENSIONS ── */
.artist-avatar-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
  border: 2px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.artist-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.artist-card:hover .artist-profile-img {
  transform: scale(1.08);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav {
    padding: 18px 24px;
  }
  .nav-links {
    display: none;
  }
  #hero,
  section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 40px 24px 24px;
  }
  .footer-top {
    flex-direction: column;
  }
  .hero-stats {
    gap: 28px;
  }
}