body::before {
  display: block;
  content: "";
  height: 60px;
}

/* Hero Banner */

.hero-banner {
  background: linear-gradient(0deg, rgb(167, 14, 144), #fd7dd9);
  padding: 0;
  padding-top: 5rem;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-banner {
    padding: 2rem;
    padding-top: 5rem;
    text-align: left;
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1500px) {
  .hero-banner {
    padding: 2rem;
    padding-top: 5rem;
    text-align: left;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
  }
}


.custom-bg {
  background: linear-gradient(0deg, rgb(167, 14, 144), #fd7dd9);
  padding: 0;
  padding-top: 5rem;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  max-height: 60vh; 
  border: 5px solid #500263ad;
  box-shadow: 0 4px 8px rgba(235, 9, 216, 0.1); /* Add a subtle shadow */
  border-radius: 10px; /* Add rounded corners */
}

@media (max-width: 576px) {
  .responsive-img {
    width: 100%;
    margin-top: 20px;
  }
}



/* Apply pb-5 only on smaller screens */
@media (max-width: 767.98px) {
  .custom-padding {
      padding-bottom: 3rem !important; /* Equivalent to pb-5 */
  }
}

/* Remove padding on smaller screens */
@media (max-width: 767.98px) {
  .no-padding-sm {
      padding-left: 0 !important;
      padding-right: 0 !important;
      text-align: center;
  }
}

/* buttons */

.custom-btn {
  background: linear-gradient(0deg, rgb(235, 67, 210), #f3b5e1) !important;
  border-style: none !important;
  transition: background 0.3s ease, transform 0.3s ease; /* Add transition for background and transform */
}

.custom-btn:hover {
  background: linear-gradient(
    0deg,
    #f3b5e1,
    rgb(235, 67, 210)
  ) !important; /* Change background on hover */
  transform: scale(1.05); /* Slightly increase the size on hover */
}
.custom-btn-2 {
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for a sleek look */
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for box-shadow */
  padding: 1rem 2rem; /* Increase padding for a bigger button */
  font-size: 1.25rem; /* Increase font size */
  border-radius: 8px; /* Add rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  color: white; /* Ensure text is visible on dark background */
}

.custom-btn-2:hover {
  background: rgba(0, 0, 0, 0.7); /* Darker background on hover */
  transform: scale(1.05); /* Slightly increase the size on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}



.custom-text {
  color: rgb(221, 224, 11);
}

.custom-bg-event {
  background: linear-gradient(
    135deg,
    #ffb6c1,
    #ff69b4,
    #ff1493
  ); /* Light Pink, Hot Pink, Deep Pink */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer; /* Change cursor to pointer */
  transition: transform 0.2s, box-shadow 0.2s; /* Smooth transition for hover effects */
}

.custom-bg-event:hover {
  transform: scale(1.05); /* Slightly increase size */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increase shadow */
}


@font-face {
  font-family: "Grillin";
  src: url("fonts/Grillin-ywlG2.otf") format("truetype");
}

#paintFont {
  font-family: "Grillin", sans-serif;
  font-size: 90px;
}


#backToTopBtn {
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
  border: none; /* Remove border */
  color: white; /* Text color */
}

#formBody {
  background: linear-gradient(0deg, rgb(215, 109, 199), #70abb077);
}



.user-photo {
  border: 3px solid #fff;
}

.card-title {
  font-family: "Arial Black", sans-serif;
}

.card-text {
  font-family: "Georgia", serif;
  font-size: 1.1em;
  line-height: 1.5;
  color: black;
}


/* Hide the text by default */
.learn-more {
  display: none;
}

/* Show the text on mobile devices */
@media (max-width: 768px) {
  .learn-more {
    display: block;
  }
}

/* General ul li styling */
.custom-list li {
  background: #ff69b4;
  color: #fff;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
}




@media (max-width: 768px) {
  #Events .container {
    padding: 0;
    margin: 0;
  }
}




/* .section-padding-top {
  padding-top: 98px;
} */

/* Full-page modal style */
.modal-full {
  min-width: 100%;
  margin: 0;
}

.modal-full .modal-content {
  min-height: 100vh;
}

