@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

html {
    scroll-behavior: smooth;
}

a {
    text-decoration:none;
}

body {
    background: #131313;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Staatliches', cursive;
}


button, input {
  font-weight: 700;
  letter-spacing: 1.4px;
}

body::-webkit-scrollbar {
  width: 0.3rem;
  background-color: #131313;
}

body::-webkit-scrollbar-track {
  background-color: #131313;
}

body::-webkit-scrollbar-thumb {
  background-color: #dc143c;
  border-radius: 0.25rem;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #dc143c;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: #DC143C;
    transition: opacity 0.5s;
}

.preloader.fade {
    opacity: 0;
    pointer-events: none;
}

.preloader-text {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.preloader-text h2 {
    font-size: 40px;
    margin-bottom: 1px;
}

.preloader-text h1 {
    font-size: 200px;
    margin-top: 1px;
}

.loading-bar-l {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #131313;
    animation: loading-left 2s ease-in-out forwards;
    z-index: 0;
}

.loading-bar-r {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #131313;
    animation: loading-right 2s ease-in-out forwards;
    z-index: 0;
}

@keyframes loading-left {
    from { width: 0; }
    to { width: 50%; }
}

@keyframes loading-right {
    from { width: 0; }
    to { width: 50%; }
}


@keyframes drifting {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}


header {
    background:transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.5s;
}

.header-content {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.hear-me {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

.follow-me {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

.music-icons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.follow-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.music-icons li {
  margin-right: 0;
}

.follow-icons li {
  margin-right: 0;
}

.music-icons a {
  display: inline-block;
}



.follow-icons a {
  display: inline-block;
}

.music-icons i,
.follow-icons i {
  font-size: 20px;
}

.music-icons,
.follow-icons {
  gap: 5px;
}


.listen-text,
.follow-text {
  margin-bottom: 5px;
}

.header-up {
  transform: translateY(-100%);
}

navi h1 {
    display: flex;
    margin-left: 60px;
    color: #dc143c;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #dc143c;
    font-weight: bold;
    font-size: 18px;
}

nav ul li a:hover,
nav ul li a:focus {
    color:#800000;
}

navi ul {
    list-style: none;
    display: flex;
}

navi ul li {
    margin-right: 20px;
    margin-left: 20px;
}

navi ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

navi ul li a:hover,
navi ul li a:focus {
    color:#dc143c;
}

.hear-me a:hover i {
    transform: scale(2.2);
    -ms-transform: scale(2.2);
    -webkit-transform: scale(2.2);
    color: #dc143c;
    background: #dc143c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.follow-me a:hover i {
    transform: scale(2.2);
    -ms-transform: scale(2.2);
    -webkit-transform: scale(2.2);
    color: #dc143c;
    background: #dc143c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
  }

.main {
    height: 100vh;
    display: flex;
    margin:0%;
    justify-content: center;
    align-items: center;
}

.main img {
    transition: filter 4s ease;
    max-width: 50%;
    max-height: 50%;
    animation: drifting 4s ease-in-out infinite;
}

.main img:hover {
    filter: invert(65%) sepia(200%) saturate(2608%) hue-rotate(335deg) brightness(88%) contrast(200%);
}

section {
    padding: 20px;
    margin: 20px;
    color: #dc143c;
    min-height: 100vh;
}

section h2 {
    font-size: 60px;
}

.song-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 2rem;
  justify-items: center;
}

.card {
  background-color: #333333;
  color: #F5F5F5;
  height: 25rem;
  width: 20rem;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.song-title {
  margin-top: 15px;
  font-size: 1.5em;
  transition: color 0.3s ease;
}

.card:hover .song-title {
  color: #dc143c;
}

.card:hover .song-artist {
    color: #dc143c;
  }

.song-image {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  border: 5px solid #272133;
  margin-top: 20px;
  box-shadow: 0 10px 50px #dc143c;
}



.card:hover .song-image {
  box-shadow: 0 20px 60px #dc143c;
}

.social-icons {
  padding: 0;
  list-style: none;
  margin: 1em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .social-icons {
  opacity: 1;
}

.social-icons li {
  display: inline-block;
  margin: 0.15em;
  position: relative;
  font-size: 1em;
}

.social-icons i {
  color: #fff;
  position: absolute;
  top: 0.95em;
  left: 0.96em;
  transition: all 0.3s ease;
}

.social-icons a {
  display: inline-block;
}

.social-icons a:before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  content: " ";
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: block;
  background: linear-gradient(45deg, #dc143c, #131313);
  transition: all 0.3s ease;
}

.social-icons a:hover:before {
  transform: scale(0);
  transition: all 0.3s ease;
}

.social-icons a:hover i {
  transform: scale(2.2);
  -ms-transform: scale(2.2);
  -webkit-transform: scale(2.2);
  color: #dc143c;
  background: -webkit-linear-gradient(45deg, #dc143c, #131313);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}


#about {
  background-color: #131313;
  color: #fff;
  padding: 60px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
}

.about-box h2 {
    writing-mode: vertical-lr;
    color: #dc143c;
    text-orientation:upright;
}

.about-box {
    display:flex;
    max-width: 1000px;
    padding: 10px;
    margin: 20px;
    font-size: 20px;
    background-color: #333333;
    border-radius: 50px;
    transition: transform 0.3s ease;
    animation: aboutBoxFade 0.5s ease;
}

.about-box:hover {
  transform: scale(1.05);
}

.about-text {
  margin-top: 20px;
  text-align: left;
}

.about-text p {
  margin-bottom: 10px;
  line-height: 1.6;
}

@keyframes aboutBoxFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#discography h2{
    text-align: center;
}


.end {
  width: 100%;
  height: 100px;
  background: #131313;
  text-align: center;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  bottom: 0;
}

.end a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 2px;
}

.end a:before {
  content: "|";
  margin-right: 2px;
}

.end a:first-child:before {
  content: "";
}

.end a:hover {
  color: #dc143c;
}

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.background {
  display: flex;
  min-height: 100vh;
}

.broski {
  flex: 0 1 700px;
  margin-left:auto;
  margin-right:auto;
  margin-top:20px;
  padding: 10px;
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 50px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 10000px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #dc143c;
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #dc143c;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #dc143c;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #800000;
}


@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}
