
/* social */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Calibri;
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
}
    
html {
  font-size: 62.5%;
}
    #vanta-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: -1; /* İçerik ön planda olsun */
    }

main {
  width: 100vw;
  display: grid;
  place-items: center;
}

main .mainCard {
  width: 50rem;
  height: 55rem;
  border-radius: 30px;
  border: 2px solid #ffc400;
  background: #151313;
  box-shadow: 20px 20px 60px #ffc400, -20px -20px 60px #ffc400;
  margin-top: 6rem;

}

main .mainCard .header {
  width: 100%;
  height: 62%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 8rem;
}
.logo {    
  margin: -60px 0 10px 0;
}

main .mainCard .header .logo {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

main .mainCard .header .logo img {
  border-radius: 50%;
  background-size: 100% 100%;
  border: 2px solid #ffc400;
  width: 14rem;
  height: 14rem;
  transform: perspective(1000px);
  transform: translateZ(20px);
}


.about {    
  margin: 10px 0 10px 0;
}

main .mainCard .header .about {
  width: 75%;
  height: 75%;
/*   background: #f3ce56; */
/*   box-shadow: 20px 20px 60px #ffffff, -20px -20px 60px #ffffff; */
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

main .mainCard .header .about img {

  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  transform: perspective(1000px);
  transform: translateZ(20px);
}


main .mainCard .header .name {
  font-size: 2rem;
  color: #ffc400;
/*   margin-top: 1.3rem; */
}

main .mainCard .header .subtitle {
  font-size: 1.8rem;
  margin-top: 0.2rem;
  margin-bottom: 2rem;
  color: rgb(195, 202, 207);
  z-index: 99;
}

main .mainCard .header .social {
  margin-top: 0.2rem;
}

main .mainCard .header .social a {
  cursor: pointer;
  color: #ffc400;
  background: #151313;
  box-shadow: 10px 10px 60px #ffc400, -10px -10px 60px #ffc400;
  font-size: 3rem;
  padding: 0.6rem 1rem;
  border-radius: 60%;
  margin: 0.5rem;
  width: 50px;
  height: 50px;
  text-align: center;
}

main .mainCard .header .lower .social a:hover {
  background-color: #ffc400;
  color: #151313;
}


main .mainCard .header .lower {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  background: #151313;
  box-shadow: 1px 1px 1px #ffc400, -1px -1px 1px #ffc400;
  padding: 0.5rem 1.5rem;
  margin-top: 2rem;
}

main .mainCard .header .lower .text1 {
  margin-top: 2.4rem;
  margin-bottom: 3rem;
  text-align: left;
  font-size: 1.5rem;
  color: rgb(195, 202, 207);
  /* padding-left: 2.3rem; */
  /* padding-right: 2.3rem; */
  z-index: 100;
}

main .mainCard .header .lower .text1 h4 {
  color: #ffc400;
}


main .mainCard .header .lower .text1 p {
  text-align: justify;
}

main .mainCard .header .lower .buttons {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 2rem;
  width: max-content;
  margin-bottom: 1.5rem;
}

main .mainCard .header .lower .buttons a {
  color: #ffc400;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 600;
  background-color: transparent;
  border: 2px solid #ffc400;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  transition: ease 0.2s;
}

main .mainCard .header .buttons a:nth-child(2) {
  margin-top: 1rem;
}

main .mainCard .header .buttons a:hover {
  background-color: #ffc400;
  color: #151313;
}

/* Footer ayarları */
footer.developer {
  width: 100%;
  background-color: transparent;
  text-align: center;
  font-size: 1rem;
  color: #ffc40032;
  margin-top: -10px;
}

footer .webowner a {
  color: #ffc40032;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

footer .webowner a:hover {
  color: #ff0000;
}
/* RESPONSIVE CODE */

@media screen and (max-width: 520px) {
  main .mainCard {
    width: 35rem;
    height: 58rem;
    margin-top: 2rem;
  }
  main .mainCard .header .logo {
    width: 14rem;
    height: 14rem;
    margin: -10px 0 5px 0;
  }
  main .mainCard .header .logo img {
    width: 11rem;
    height: 11rem;
  }
  main .mainCard .header .name {
    font-size: 1.7rem;
    margin-top: 1rem;
  }

  main .mainCard .header .subtitle {
    font-size: 1.7rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  main .mainCard .header .social a {
    font-size: 2.8rem;
  }
  main .mainCard .header .text1 {
    margin-top: 2.4rem;
    text-align: center;
    font-size: 1.5rem;
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
  main .mainCard .header .buttons a {
    font-size: 2rem;
  }
footer.developer {
  margin-top: -50px;
}
}

@media screen and (max-width: 404px) {
  main .mainCard {
    width: 32rem;
    height: 58rem;
    margin-top: 2rem;
  }
  main .mainCard .header .logo {
    width: 13rem;
    height: 13rem;
    margin: -10px 0 5px 0;
  }
  main .mainCard .header .logo img {
    width: 10rem;
    height: 10rem;
  }
  main .mainCard .header .name {
    font-size: 1.6rem;
  }
  main .mainCard .header .social a {
    font-size: 2.5rem;
  }
  main .mainCard .header .lower .text1 {
    margin-top: 2.4rem;
    font-size: 1.45rem;
  }
  main .mainCard .header .lower .buttons a {
    font-size: 1.9rem;
  }
footer.developer {
  margin-top: -50px;
}
}

.s-home {
  width: 100%;

  background-color: transparent;
  position: relative;
  display: table;
}

.s-home .shadow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  overflow: hidden;
}

.s-home::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0.65;
  background-color: #000000;
}

.home-content {
  display: table-cell;
  width: 100%;

  vertical-align: middle;
  padding-bottom: 10rem;
  overflow: hidden;
  position: relative;
}


.home-content__main {
  padding-top: 7rem;
  position: relative;
}

.home-scroll {

  position: absolute;
  right: 110px;
  bottom: 6.6rem;
}

.home-scroll__text {
  display: inline-block;
  font-family: "metropolis-semibold", sans-serif;
  font-size: 11px;
  line-height: 4.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #ffc400;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  position: relative;
  right: 7.5rem;
}

.home-scroll__icon {
  display: block;
  height: 4.8rem;
  width: 4.8rem;
  background-color: #ffc400;
  background-image: url(../images/icons/icon-arrow-down.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px 18px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
}

.home-scroll:hover .home-scroll__text {
  border-bottom: 1px solid #ffc400;
}

html.preload .home-content__main {
  opacity: 0;
}

html.loaded .home-content__main {
  animation-duration: 2s;
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -150%, 0);
  }
}

/**--------------------------------------------------------POPUP START--------------------------------------------------------------**\
*/

/*=============== BASE ===============*/

button{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

img{
  max-width: 100%;
  height: auto;
}

/*=============== MODAL ===============*/
.modal{
  display: grid;
  place-items: center;
}

.modal__buttonsp{
  display: inline-block;
  background-color: #151313;
  color: #ffc400;
  border: 2px solid #ffc400;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 1rem;
  transition: .3s;
}

.modal__buttonsp:hover{
  background-color: #ffc400;
  color: #151313;
}

.modal__containeryt{
  animation: arkaPlanaHareketKat 7.5s ease-in-out infinite;
  background-size: 400% 400%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overflow-y: auto;
  transition: all .3s;
  z-index: 1003;
  visibility: hidden;
  opacity: 0;

  /*=== Effect 3 ===*/
   perspective: 1000px; 
}

@keyframes arkaPlanaHareketKat{
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}

.modal__containeryt.show-modal {
  visibility: visible;
  opacity: 1;
}

.modal__content{
  position: relative;
  background-color: #151313;
  text-align: center;
  padding: 2rem 2rem 2rem;
  border-radius: 1rem 1rem 0 0;
  transition: all .3s;
  /*=== Effect 2 === */
   transform: scale(.5) translateY(10%);
}

.modal__close{
  display: inline-flex;
  border-radius: .25rem;
  color: #ff0000;
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 2rem;
  cursor: pointer;
}

.modal__close > h1 {
float: left;
}

.modal__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -15px;
  margin-bottom: 10px;
}


.modal__closesp{
  border-radius: .25rem;
  color: #ffc400;
  font-size: 1.5rem;
  right: 2rem;

}

.modal__closesp > h1 {
float: left;
}

.modal__titlesp{
  font-size: 2rem;
  color: #ffc400;
  font-weight: 900;
}

.card-img-musiccoversp {
  border-radius: 10px;
  border: 2px solid #ffc400;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

  .card-img-musiccoversp:focus,
  .card-img-musiccoversp:hover {
    box-shadow: 0 .65em .8em -.4em #ffd100;
    transform: translateY(-.45em);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  
  }

.modal__button-width{
  width: 100%;
  margin-bottom: -10px;
}

/* Show modal */
.show-modal{
  visibility: visible;
  opacity: 1;
}

.show-modal .modal__content{
  /*=== Effect 3 ===*/
   transform: rotateX(0) scale(1) translateY(0); 
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (min-width: 576px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }
}

@media screen and (min-width: 450px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }
}

/* For small devices */
@media screen and (max-width: 576px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal {
    max-width: 350px;
    max-height: max-content;
  }

  .card-img-musiccoversp {
    max-width: 285px;
    max-height: 450px;
  }
}

@media screen and (max-width: 450px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }

  .modal {
    max-width: 350px;
    max-height: max-content;
  }

  .card-img-musiccoversp {
    max-width: 285px;
    max-height: 450px;
  }
}

@media screen and (max-width: 350px){
  .modal__content{
    margin: auto;
    width: 350px;
    border-radius: 1.25rem;
  }
  .modal {
    width: 250px;
    max-height: max-content;
    left: 0;
  }

  .card-img-musiccoversp {
    max-width: 285px;
    max-height: 450px;
  }
}

/**-------------------------------------------------------POPUP END------------------------------------------------------------**\