
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

html {
    font-size: 15px;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}


input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

#root, #__next {
  isolation: isolate;
}

body {
    overflow: hidden;
    font-family: "TASA Explorer", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    background: #232323;
    color: #5f5e5e;
}

main {
    display: flex;
    position: relative;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}

.left-content {
    flex: 50%;
    padding-left: 5%;
    padding-right: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.right-content {
    flex: 50%;
    text-align: right;
}

.right-content img {
    object-fit: cover;
    object-position: top left;
    height: 160vh;
    margin-left: auto;
    opacity: 0.1;
    filter: grayscale(100%);
    margin-bottom: -70vh;
    margin-right: -50%;
}

.hero-desc {
    position: relative;
    color: #1f1f1f;
}

.hero-buttons {
    position: relative;
    z-index: 2;
    color: #c0c0c0;
}

.hero-buttons ul {
    list-style: none;
    padding: 0;
}

.hero-buttons li {
    position: relative;
    margin-bottom: 2em;
    line-height: 1em;
}

.hero-buttons li a {
    position: relative;
    letter-spacing: 0.4em;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.0s;
    text-transform: uppercase;
    color: #000;
}

.hero-buttons li a:hover,
.hero-buttons li a.active {
    color: #fff;
}

.left-content-top {
  position: relative;
}

.left-content-top h1 {
  font-size: 3rem;
  margin-bottom: 1em;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  white-space: nowrap;
}

.left-content-top h1 span {
  display: block;
}

.left-content-top h1 span:nth-child(1) {
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  font-weight: 600;
  color: #969696;
  margin-bottom: 0.75em;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100%" height="100%" filter="url(%23n)" /></svg>');
  opacity: 0.6;
  animation: noiseAnim 0.2s steps(2) infinite;
}

@keyframes noiseAnim {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2px, 2px); }
}

.about-content {
  overflow-y: auto;
  max-height: 100%;
  padding-right: 2rem;
}

.about-description {
  margin: 2rem 0;
}

.album-card {
  margin-bottom: 2rem;
}

@media (max-width: 500px) {
  .right-content img {
    position: absolute;
    left: 0;
    top: 0;
  }

  .despre .left-content-top h1 {
    font-size: 1.5rem;
  }
}