/* @import url("https://fonts.cdnfonts.com/css/harry-potter");
@import url("https://fonts.cdnfonts.com/css/xefora"); */

/* Stranger Things style font */
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.cdnfonts.com/css/parade");
/* font-family: var(--primary-font); */
/* font-family: var(--secondary-font); */

@font-face {
  font-family: "Great-Vibes";
  src: url("../font/great-vibes.ttf");
}

/* CSS variables */
:root {
  /* heading font (Stranger Things vibe) */
  --secondary-font: "Cinzel Decorative", serif;
  --heading-font: "Cinzel Decorative", serif;
  --primary-font: "PT Serif", serif;
  --size: 16px;

  /* Card color */
  --card-color: rgb(15, 15, 15);

  /* Event cards */
  --card-height: 600px;
  --card-width: calc(var(--card-height) / 1.5);
}
.wrapper {
  overflow-x: hidden;
  position: relative;
}

/* If body/html must be used: */
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;   /* hide horizontal scroll */
  overflow-y: auto;     /* allow vertical scroll */
}

/* Headings */
h1,
h2 {
  font-family: var(--heading-font);
  text-align: center;
  color: #ff0018; /* Stranger Things red */
  text-shadow: 0px 0px 15px rgba(255, 0, 24, 0.9);
  overflow: hidden;
}

/* Cards */
.card {
  height: 90vh;
  width: 89vw;
  max-width: 1100px;
  margin: 0 auto 1.8rem;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 16px;
  box-shadow: 0 0px 25px rgba(255, 0, 24, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 0, 24, 0.3);
  transition: box-shadow 0.5s, transform 0.4s ease-in-out;
}

.card:hover {
  box-shadow: 0px 0px 35px rgba(255, 0, 24, 0.9),
    0px 0px 20px rgba(255, 80, 80, 0.6);
  transform: scale(1.02);
}
.card:hover::before {
  opacity: 1;
}

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: auto;
  background-image: radial-gradient(circle, #5c1321, #0d0d0d 70%);
}

svg {
  display: block;
  height: 30px;
  width: 30px;
  fill: #b3001b;
  cursor: pointer;
  transition: fill 0.2s ease, transform 0.2s ease;
}

svg:hover {
  fill: #ff0018;
  transform: scale(1.2);
}
.button-container{
  margin-right:-35px;
  display: flex;
  /* justify-content: center;  */
  align-items: center;
}
.button-containe{
  margin-right: 0;
  display: flex;
  align-items: center;

}
.heading-reg {
  margin-top: 10px;
  line-height: normal;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.container {
  background-color: rgba(15, 15, 15, 0.95);
  position: relative;
  z-index: 2;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(255, 0, 24, 0.7);
  width: 80%;
  max-width: 1000px;
  height: 80vh;
  transition: transform 0.5s ease-in-out;
  overflow-y: auto;
}

.container:hover {
  transform: scale(1.03);
}

::-webkit-scrollbar {
  display: none;
}

#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2) saturate(1.4);
}

#heading-title {
  color: #ff0018;
  text-shadow: 0px 0px 15px rgba(255, 0, 24, 0.9);
  /* width: min-content; */
}
.bt{
  margin-right: 40px;
}
.left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.left img {
  height: 800px;
  width: 470px;
  filter: drop-shadow(0px 0px 15px rgba(255, 0, 24, 0.8));
}
.right {
  font-size: 20px;
  font-family: var(--primary-font);
  line-height: 26px;
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: stretch;
  overflow: auto;
  color: #ddd;
}

#guidelines {
  color: #fff;
  font-size: large;
}

.cp {
  color: #ff0018;
  text-shadow: 0px 0px 8px rgba(255, 0, 24, 0.8);
}

/* Buttons */
#register-button {
  padding: 15px 35px;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 12px;
  font-size: 20px;
  font-weight: bold;
  background-color: #ff0018;
  transition: background-color 0.3s, transform 0.3s;
  animation: fadeInDown 1.8s ease-out;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
 justify-content: center;
}

#register-button:hover {
  background-color: #b3001b;
  transform: scale(1.08);
}

#register-button::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ff0018;
  left: 0;
  top: 0;
  border-radius: 10px;
}

#register-button::before {
  content: "";
  background: linear-gradient(45deg, #ff0018, #111, #ff0018, #111, #ff0018);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: blur(10px);
  animation: glowing 15s 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;
  }
}

#register-button:hover::before {
  opacity: 1;
}

#register-button:active:after {
  background: transparent;
}

#register-button:active {
  font-weight: bold;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.right h1 {
  font-size: 2.5em;
  color: #ff0018;
  animation: fadeInDown 1s ease-out;
  text-shadow: 0px 0px 10px rgba(255, 0, 24, 0.9);
}

.right h2 {
  font-size: 1.5em;
  color: #ff0018;
  margin-top: 20px;
  animation: fadeInDown 1.2s ease-out;
}

.right p,
.right ul {
  color: #ccc;
  animation: fadeInDown 1.4s ease-out;
}

.right ul {
  list-style: none;
  padding: 0;
}

.right ul li {
  color: #fff;
  margin: 5px 0;
  padding: 7px;
  border-radius: 5px;
  animation: fadeInDown 1.6s ease-out;
}

.right .contact a,
.right .contact-1 a {
  color: #ff0018;
  text-decoration: none;
}

.right .contact a:hover,
.right .contact-1 a:hover {
  text-decoration: underline;
}

.section {
  display: flex;
  height: 150px;
  width: 150px;
  border-radius: 50%;
}

.contact,
.contact-1 {
  display: flex;
  justify-content: space-evenly;
}

.contact > div,
.contact-1 > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.contact > div > p,
.contact > div > p {
  text-align: center;
}


@media (max-width: 480px) {
  .wrapper {
  overflow-x: hidden;
  position: relative;
}

/* If body/html must be used: */
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;   /* hide horizontal scroll */
  overflow-y: auto;     /* allow vertical scroll */
}
.right h1{
  font-size: 1.3em;
}
/* #heading-tittle{
  margin-left: 10px;
} */
  .container {
    display: flex;
    flex-direction: column;
  }
  .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .button-containe{
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .left img {
    width: 100%;
    
    height: fit-content;
  }

  .contact,
  .contact-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact > div,
  .contact-1 > div {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .right {
    flex: none;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@media (min-width: 1024px) {
.right h1{
  font-size: 1.7em;
}  

/* If body/html must be used: */
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;   /* hide horizontal scroll */
  overflow-y: auto;     /* allow vertical scroll */
}
  .button-container {
    overflow-x: hidden;
    justify-content: center;
  }
  .button-containe{
    justify-content: center;
  }
  .right{
    overflow-x: hidden;
  }
}
@media (min-width: 1440px){
  .right h1{
    font-size: 2.5em;
  }
} 