@import url("https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap");

*:not(i) {
  font-family: "Goldman", sans-serif;
}

.color-1 {
  color: #ffffffc0 !important;
}

.navbar-my {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d5234117;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-my ul li a {
  color: #ffffffc0 !important;
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 15px;
}

.navbar-my ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: #d52340;
  transition: width 0.35s ease;
}

.navbar-my ul li a:hover {
  color: #fff !important;
}

.navbar-my ul li a:hover::after {
  color: #fff !important;
  width: 100%;
}

.navbar-my ul li a.active-self {
  font-weight: 600;
  color: #fff !important;
}

.navbar-my ul li a.active-self::after {
  width: 100%;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  font-size: 20px;
}

.flex-self {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.hero {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: linear-gradient(
      135deg,
      #18191c 0%,
      #3a0f18 40%,
      #d52340 100%
    ),
    url(../images/hero.jpeg);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero h1 {
  color: #d52341d0;
  font-size: 65px;
  text-shadow: 0 0 10px rgba(213, 35, 64, 0.6);
}

.hero p {
  color: #ffffffc0;
  font-size: 20px;
}

.hero-img img {
  opacity: 0.8;
  height: 400px;
  width: 100%;
  object-fit: cover;
  border: 5px solid #d523418f;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(213, 35, 64, 0.9), 0 0 40px rgba(213, 35, 64, 0.6);
  animation: floatUpDown 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes floatUpDown1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
    box-shadow: 0 0 40px rgba(213, 35, 64, 0.8);
  }
  100% {
    transform: translateY(0px);
  }
}

.playim {
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background-color: #d52340;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease all;
  box-shadow: 0 0 10px rgba(213, 35, 64, 0.6);
  font-size: 18px;
}

.playim:hover {
  box-shadow: 0 0 20px rgba(213, 35, 64, 0.9), 0 0 40px rgba(213, 35, 64, 0.6);
  transform: translateY(-2px);
}

.playim::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.7s ease;
}

.playim:hover::before {
  transform: rotate(45deg) translateX(100%);
}

.container-2 {
  max-width: 800px;
  margin: 0 auto;
}

.inner {
  animation: floatUpDown1 3s ease-in-out infinite;
  transform-origin: center;
  padding: 30px;
  background-color: #d5234117;
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(213, 35, 64, 0.3);
}

.item-inner {
  padding: 30px;
  background-color: #d523414d;
  /* background-color: #29070c4d; */
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(213, 35, 64, 0.3);
  transition: 0.3s ease-in-out all;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.item-inner img {
  border-radius: 50%;
  padding: 20px;
  background-color: #29070ca3;
  margin-bottom: 20px;
}

.item-inner:hover {
  transform: translateY(-7px);
}

.item-1-inner {
  padding: 30px;
  background-color: #d523414d;
  /* background-color: #29070c4d; */
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(213, 35, 64, 0.3);
  transition: 0.3s ease-in-out all;
}

.item-1-inner p {
  color: #ffffffc0;
}

.item-1-inner ul li {
  color: #ffffffc0;
}

.item-1-inner a {
  color: #d52340;
}

.item-1-inner:hover {
  transform: translateY(-7px);
}

.about {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: linear-gradient(
      135deg,
      #18191c 0%,
      #3a0f18 40%,
      #d52340 100%
    ),
    url(../images/hero.jpeg);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sect-name {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 25px;
}

.sect-name h2 {
  color: #d52341d0;
  font-size: 50px;
  text-shadow: 0 0 10px rgba(213, 35, 64, 0.6);
}

.bottom-disc {
  background-color: #29070ca3;
  backdrop-filter: blur(10px);
}

footer {
  background-color: #29070ca3;
}

footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}

footer ul li a:hover {
  color: #d52340;
}

footer p {
  text-align: center;
}

footer .footer-disc {
  padding: 20px;
  border-radius: 12px;
  background: #3a0f18;
  box-shadow: 0 0 20px rgba(213, 35, 64, 0.9);
  margin-top: 25px;
}

.form-control-custom {
  background-color: #0f0f0f;
  border: 1px solid #2d2d2d;
  color: #fff;
  padding: 12px;
}

.form-control-custom::placeholder {
  color: #bbb;
}

.form-control-custom:focus {
  border-color: #d52340;
  box-shadow: 0 0 5px rgba(213, 35, 64, 0.5);
  background-color: #111;
  color: #fff;
}

.send-btn {
  background-color: #d52340;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s ease;
}

.send-btn:hover {
  background-color: #b41d36;
  box-shadow: 0 0 12px rgba(213, 35, 64, 0.7);
  color: #fff;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 18px;
  }

  .playim {
    font-size: 17px;
  }
  .sect-name h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
}

body {
  background: linear-gradient(135deg, #18191c 0%, #3a0f18 40%, #d52340 100%);
}

.age-disclaimer-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-image: linear-gradient(#000000f8, #000000f8);
  background-size: 400px;
}

.custom-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #3a0f18;
  padding: 20px;
  max-width: 600px;
  width: 95%;
  border-radius: 10px;
  background-position: center;
  background-size: 700px;
  background-position: top;
  background-size: 300px;
  box-shadow: 0px 0px 40px 0px #3a0f18;
  background-repeat: repeat no-repeat;
}

.custom-modal a {
  background-color: #d52340;
  text-align: center !important;
  color: #fff;
  transition: 0.2s;
  margin-bottom: 1px;
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
}

.custom-modal a:hover {
  background: #b41d36;
}

.custom-modal h3 {
  color: #fff;
  font-weight: bolder;
  font-size: 50px;
  margin-bottom: 50px !important;
  margin-top: 30px !important;
}
