/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Skranji:wght@400;700&display=swap");
.skranji-regular {
  font-family: "Skranji", system-ui;
  font-weight: 400;
  font-style: normal;
}

.skranji-bold {
  font-family: "Skranji", system-ui;
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  list-style: none;
  text-decoration: none;
  font-family: "Skranji", serif;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

@supports (scrollbar-width: thin) {
  * {
    scrollbar-width: thin;
  }
}
::-moz-selection {
  background-color: #420820;
}
::selection {
  background-color: #420820;
}

a, a:hover, a:active, a:visited {
  color: white;
}

#results {
  padding-top: 10px;
  font-size: 20px;
}

header {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #a01f16, #c3122e, #af0e09, #ce1662, #f89b0f);
  background-position: bottom center;
  background-size: cover;
}

#DJAD {
  padding: 0;
  margin: 0;
  width: 225px;
  position: absolute;
  transition: 1s;
}

#DJAD:hover {
  width: 300px;
  cursor: pointer;
}

.vinyl-player {
  position: absolute;
  bottom: 5%;
  left: 40%;
  width: 80vw;
  height: 80vh;
  z-index: 0;
}

.layer-blur {
  height: 0;
  width: 30rem;
  position: absolute;
  top: 30%;
  left: 0;
  box-shadow: 0 0 800px 60px wheat;
  rotate: -30deg;
  z-index: 0;
  animation: blurAnimation 10s ease infinite;
}

@keyframes blurAnimation {
  0% {
    box-shadow: 0 0 800px 60px wheat;
    rotate: -30deg;
    top: 30%;
    left: 0;
  }
  50% {
    box-shadow: 0 0 800px 60px rgb(230, 186, 106);
    rotate: -30deg;
    top: 50%;
    left: 10%;
  }
  100% {
    box-shadow: 0 0 800px 60px wheat;
    rotate: -30deg;
    top: 30%;
    left: 0;
  }
}
nav {
  display: flex;
  padding: 2% 5%;
  z-index: 200;
}

nav ul {
  text-align: right;
  flex: 1;
}

nav ul li {
  display: inline-block;
  padding: 0 15px;
}

nav ul li a {
  color: white;
  font-size: 30px;
  transition: 0.3s;
}

nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: #C2B067;
  transition: 0.3s ease-in-out;
  display: block;
}

nav ul li a:hover {
  color: #C2B067;
}

nav ul li a:hover::after {
  width: 100%;
}

button {
  padding: 5px 40px;
  color: white;
  cursor: pointer;
  font-size: 30px;
  font-weight: bold;
  border-radius: 10px;
  background: linear-gradient(110deg, #c21437 40%, #f9990e 60%);
  border: none;
  outline: none;
  position: relative;
  z-index: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button::before {
  content: "";
  background: linear-gradient(45deg, #a01f16, #c3122e, #af0e09, #ce1662, #f89b0f, #f2b028, #ef9f0c, #f9bd4d);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(4px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
button:hover::before {
  opacity: 1;
}

.head {
  margin: 5% 5%;
  color: wheat;
}

.head h3 {
  font-size: 30px;
  line-height: 26px;
  padding-top: 5%;
  padding-bottom: 30px;
  padding-right: 40px;
}

.head h1 {
  font-size: 80px;
  font-size: bolder !important;
  line-height: 1em;
  padding-bottom: 2%;
}

/* About Section */
#about {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  padding: 5% 10% 7% 7%;
  background-image: url(images/aboutmebackground.png);
}

.helpful {
  display: none;
}

.about-left-side {
  padding-top: 1%;
  color: wheat;
}

.about-left-side h1 {
  font-size: 55px;
  padding-bottom: 20px;
  font-weight: bolder;
}

.about-left-side h3 {
  color: wheat;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700 !important;
}

.about-left-side p {
  color: wheat;
  font-size: 20px;
  padding-right: 40px;
  line-height: 26px;
  padding-top: 5%;
  padding-bottom: 10%;
}

.about-right-side img {
  padding-left: 6%;
  width: 600px;
  height: 600px;
}

.line {
  position: absolute;
  width: 100vw;
  height: 30%;
  top: 1771px;
  left: 0;
  right: 0;
}

.line-1 {
  z-index: 15;
  opacity: 0.5;
}

.line-2 {
  z-index: 14;
  opacity: 0.7;
}

.line-3 {
  z-index: 13;
  opacity: 1;
}

.wave {
  position: inherit;
  width: 200%;
  height: 30%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}

.wave1 {
  background-size: 50% 8px;
  animation: animate 10s linear infinite;
}

.wave2 {
  background-size: 50% 10px;
  animation: animate 12s linear infinite;
}

.wave3 {
  background-size: 50% 8px;
  animation: animate 18s linear infinite;
}

@keyframes animate {
  0% {
    transform: translateX(0) translateY(0) scaleY(0);
  }
  50% {
    transform: translateX(-25%) translateY(0) scaleY(1);
  }
  100% {
    transform: translateX(-50%) translateY(0) scaleY(0);
  }
}
/* What We Do Section */
#what {
  width: 100vw;
  height: 100vh;
  background: url("images/whatbackground.png");
  align-items: center;
  justify-content: center;
}

#what h1 {
  padding-top: 3%;
  padding-left: 7%;
  font-size: 80px;
  font-weight: bolder;
  color: rgb(19, 18, 18);
}

hr {
  width: 87%;
  margin: 0% 7%;
  background: linear-gradient(30deg, #c21437 40%, #f9990e 60%);
  padding: 10px 0;
}

.buttoncontainer {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.buttonlinks {
  margin: 0;
  padding: 0;
}

.contactbutton {
  margin-top: 5%;
  font-size: 40px;
}

.cards {
  margin-top: 3%;
  display: flex;
  justify-content: center;
}

.box {
  justify-content: center;
  text-align: center;
  color: whitesmoke;
  padding: 50px 50px;
  background-color: #420820;
}

.box h2 {
  font-size: 30px;
  padding-bottom: 15px;
}

.box h5 {
  font-size: 16px;
  padding-bottom: 15px;
  font-weight: bolder;
}

.boxa {
  background-color: #811120;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.boxb {
  width: 450px;
  height: 350px;
  background-color: #770f0f;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.boxc {
  width: 450px;
  height: 350px;
  background-color: #5a0b16;
  padding-left: 5vw;
  padding-right: 5vw;
}

.boxd {
  width: 450px;
  height: 350px;
  background-color: #42080b;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.action {
  background-color: #ac1554;
  padding-top: 10%;
  margin-top: 20%;
  color: honeydew;
  text-align: center;
  height: 100vh;
}

.about h3 {
  font-size: 35px;
  padding-bottom: 20px;
  font-weight: bolder;
}

.action h1 {
  font-size: 55px;
  padding-bottom: 40px;
}

/* Contact Section */
.contact {
  background-color: rgb(15, 15, 15);
  color: whitesmoke;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  padding: 10% 10%;
  text-align: center;
  background-image: url(images/contactbackground.png);
}

.contact-left-side h2, .contact-right-side h3 {
  font-size: 40px;
  padding-bottom: 40px;
  letter-spacing: 2px;
}

form {
  width: 45%;
}

input {
  width: 100%;
  outline: none;
  padding: 20px 40px;
  margin-bottom: 5%;
  border-radius: 10px;
  border: 2px solid black;
  background: whitesmoke;
  transition: 0.1s ease;
  z-index: 1111;
  font-size: 20px;
}

input:focus, input:valid {
  color: #c50c06;
  border: 5px solid #42080b;
}

.contact-left-side h1 {
  padding-top: 40px;
  font-size: 32px;
}

.contact-left-side p {
  padding-top: 90px;
}

.contact-right-side h4 {
  font-size: 30px;
  font-weight: bolder;
  padding-bottom: 20px;
}

.icons {
  padding-top: 25px;
  justify-content: center;
}

#icon {
  width: 19%;
  height: 19%;
  border-radius: 80px;
  font-size: 45px;
  margin: 5px;
  padding: 5px;
  cursor: pointer;
  transition: 0.4s;
}

#icon:hover {
  background-color: #ac1554;
}

.popup {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  color: #333;
  visibility: hidden;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.pop {
  max-width: 600px;
  background: rgb(255, 248, 238);
  border-radius: 10px;
  padding: 1em;
}

.open-popup {
  visibility: visible;
}

.pop iframe {
  padding: 10px;
  border-radius: 10px;
}

.pop button {
  width: 100%;
  padding: 10px 0;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.modal {
  background: rgb(255, 248, 238);
  max-width: 100%;
  width: 700px;
  padding: 30px 50px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modal h1 {
  margin: 0;
  font-size: 50px;
}

.modal p {
  font-size: 18px;
  padding: 10px;
  opacity: 0.7;
}

.modal button {
  margin: 10px;
}

.slider-wrapper {
  position: relative;
  max-width: 20rem;
  margin: 0 auto;
  overflow-y: auto;
  scrollbar-width: none;
}

.slider {
  display: flex;
  aspect-ratio: 1/1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  border-radius: 0.5rem;
}

.slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-nav {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000000;
}

.slider-nav a {
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 50%;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.slider-nav a:hover {
  opacity: 1;
}

@media (min-height: 950px) {
  .line {
    width: 100vw;
    top: 1840px;
  }
}
@media (max-width: 1710px) {
  .vinyl-player {
    bottom: 25%;
    left: 50%;
    width: 60vw;
    height: 60vh;
  }
  .head h3 {
    font-size: 20px;
  }
  .head h1 {
    font-size: 70px;
  }
  .about-right-side img {
    width: 500px;
    height: 500px;
  }
  .line {
    display: none;
  }
  .wave {
    display: none;
  }
}
@media (max-width: 1500px) {
  .about-right-side img {
    width: 400px;
    height: 400px;
  }
  .vinyl-player {
    top: 16%;
    left: 54%;
    width: 65vw;
    height: 80vh;
  }
  #what h1 {
    font-size: 70px;
  }
  .cards {
    margin: 3% 3% 3% 3%;
  }
}
@media (max-width: 1300px) {
  .head h3 {
    font-size: 30px;
  }
  .head h1 {
    font-size: 55px;
  }
  .about-right-side img {
    width: 500px;
    height: 500px;
  }
  .about-left-side p {
    font-size: 18px;
  }
  .about-right-side img {
    margin-top: 50px;
    width: 400px;
    height: 400px;
  }
  .vinyl-player {
    left: 50%;
    width: 65vw;
    height: 80vh;
  }
  .cards {
    margin: 5% 5% 5% 5%;
  }
  .box h2 {
    font-size: 26px;
    padding-bottom: 15px;
  }
  .box h5 {
    font-size: 16px;
    padding-bottom: 15px;
    font-weight: bolder;
  }
  .contact-left-side h2 {
    padding-top: 40px;
    font-size: 30px;
  }
  .contact-right-side h3 {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  * {
    overflow-x: hidden;
  }
  .vinyl-player {
    left: 45%;
    width: 70vw;
    height: 80vh;
  }
  .head h1 {
    font-size: 45px;
  }
  .about-left-side h1 {
    font-size: 50px;
  }
  .about-left-side p {
    font-size: 15px;
  }
  .about-right-side img {
    margin-top: 170px;
    width: 350px;
    height: 350px;
  }
  .contact-left-side {
    width: 700px;
  }
  .contact-right-side {
    width: 400px;
  }
  .contact-right-side h4 {
    font-size: 20px;
  }
  form {
    overflow: hidden;
    width: 25em;
  }
  nav ul li a {
    color: white;
    font-size: 25px;
    transition: 0.3s;
  }
}
@media (max-width: 1100px) {
  .headerText {
    font-size: 22px;
  }
  .vinyl-player {
    left: 42%;
    width: 75vw;
    height: 80vh;
  }
  .head h3 {
    font-size: 20px;
  }
  .head h1 {
    font-size: 39px;
  }
  .about-right-side img {
    margin-top: 170px;
    width: 335px;
    height: 335px;
  }
  .box h5 {
    font-size: 14px;
    padding-bottom: 15px;
    font-weight: bolder;
  }
}
@media (max-width: 900px) {
  .vinyl-player {
    top: 23.5%;
    left: 10%;
    width: 110vw;
    height: 80vh;
    overflow: hidden;
  }
  .head {
    text-align: center;
  }
  .head h3 {
    font-size: 30px;
  }
  .head h1 {
    font-size: 60px;
  }
  nav ul li {
    display: none;
  }
  .donate {
    font-size: 30px;
  }
  #about {
    padding: 5%;
  }
  .about-right-side {
    display: none;
  }
  .about-left-side {
    text-align: center;
    align-items: center;
  }
  .about-left-side p {
    font-size: 17px;
  }
  .box h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .box h5 {
    font-size: 13px;
    padding-bottom: 5px;
    font-weight: bolder;
  }
  .box {
    margin-top: 50px;
    height: 290px;
  }
  .cards {
    text-align: center;
    align-items: center;
  }
  .cards br {
    display: none;
  }
  .cards .box hr {
    display: none;
  }
  form {
    overflow: hidden;
    width: 20em;
  }
  .contact-right-side {
    margin-top: 35px;
    width: 600px;
  }
}
@media (max-width: 500px) {
  body {
    overflow-x: hidden;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  body {
    overflow-x: hidden;
  }
  .vinyl-player {
    display: none;
  }
  .head {
    padding-top: 5em;
  }
  button {
    margin-top: 0.5em;
  }
  .donate {
    margin-top: 60px;
  }
  #DJAD {
    width: 170px;
  }
  .about-left-side {
    overflow: hidden;
  }
  .about-left-side br {
    display: none;
  }
  .about-left-side button {
    font-size: 25px;
    margin-top: 0em;
  }
  .about-left-side p {
    margin-bottom: 0em;
  }
  .helpful {
    margin-top: 1em;
    margin-bottom: 0em;
    display: block;
  }
  #what h1 {
    font-size: 50px;
  }
  .cards {
    overflow: hidden;
    flex-direction: column;
  }
  .box h2 {
    font-size: 30px;
    padding-bottom: 15px;
  }
  .box h5 {
    font-size: 14px;
    padding-bottom: 5px;
    font-weight: bolder;
  }
  .box {
    width: 290px;
    height: 200px;
    border-radius: 15px;
    padding: 1em 0.5em 0.5em 0.5em;
    margin: 0.5em;
  }
  .buttoncontainer button {
    font-size: 30px;
  }
  .contact {
    flex-direction: column;
  }
  .contact-left-side {
    overflow: hidden;
  }
  form {
    height: 49em;
  }
  .contact-right-side {
    margin: 0;
    padding: 0;
    justify-content: center;
    width: 100%;
    padding: 5em 0em;
    overflow: hidden;
  }
  .icons {
    flex-direction: row;
  }
  .pop {
    max-width: 400px;
  }
}
@media (max-width: 400px) {
  .modal h1 {
    font-size: 30px;
  }
  .head {
    overflow: hidden;
    justify-content: center;
  }
  .head h1 {
    font-size: 50px;
    overflow: hidden;
  }
  .head h3 {
    font-size: 30px;
  }
  #DJAD {
    width: 150px;
  }
  .donate {
    margin-top: 70px;
    font-size: 20px;
  }
  .pop {
    max-width: 350px;
  }
  .about-left-side {
    overflow: hidden;
  }
  .about-left-side h1 {
    font-size: 40px;
  }
  .about-left-side p {
    font-size: 15px;
  }
  .about-left-side hr {
    display: none;
  }
  #what h1 {
    margin-top: 0.2em;
    font-size: 42px;
  }
  .box {
    height: 170px;
    overflow: hidden;
  }
  .box h5 {
    font-size: 12px;
    padding-bottom: 5px;
    font-weight: bolder;
  }
  form {
    width: 18em;
  }
  .maillist {
    font-size: 15px;
  }
  input {
    font-size: 15px;
    width: 90%;
  }
  .contact-left-side {
    height: 30em;
  }
  .contact {
    height: 100%;
  }
}/*# sourceMappingURL=style.css.map */