@import url("https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
*:focus {
  outline: 0;
}

body {
  font-family: "Raleway", sans-serif;
}

.mainHeading {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 40px;
  background: transparent;
  margin-top:2em;
  margin-bottom:2em; 
  border-radius: 4px;
}
@media screen and (max-width: 799px) {
  .mainHeading {
    width:100%;
    margin-top:0.5em;
    margin-bottom:0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0;
  }
}
.mainHeading__content {
  max-width: 100%;
  min-height: auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 799px) {
  .mainHeading__content {
    flex-direction: column;
    transform: translateX(-50%);
    min-height: auto;
  }
}
.mainHeading__text {
  z-index: 1;
  color: #637498;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 40px;
  max-width: 620px;
  margin-top: 100px;
  width: 70%;
  backdrop-filter: blur(3px);
  animation: text 0.8s 0.6s ease backwards;
  position: relative;
  border-radius: 4px;
}
.mainHeading__text:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  animation: line 0.8s 0.6s ease backwards;
}
@keyframes line {
  0% {
    right: 0;
    width: 100%;
    opacity: 0;
  }
}
@media screen and (max-width: 799px) {
  .mainHeading__text {
    padding: 20px;
    width: 100%;
    backdrop-filter: blur(3x);
    margin: 90px 0 40px 0;
  }
}
@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
}
.mainHeading__preTitle {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: black;
}
.mainHeading__title {
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-size: 40px;
  color: black;
}
@media screen and (max-width: 799px) {
  .mainHeading__title {
    margin-bottom: 16px;
    font-size: 28px;
  }
}
.mainHeading__description {
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 26px;
  color: black;
}
@media screen and (max-width: 799px) {
  .mainHeading__description {
    font-size: 14px;
  }
}
.mainHeading__image {
  right: 10%;
  max-width: 600px;
  width: 60%;
  height: auto;
  transform: translatey(100px);
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  animation: image 0.6s 0.2s ease backwards;
}
@media screen and (max-width: 799px) {
  .mainHeading__image {
    right: 0;
    width: 90%;
    max-width: 100%;
    transform: translatey(50px);
    top: -6%;
  }
}
@keyframes image {
  0% {
    opacity: 0;
    transform: translatey(200px);
  }
}
.mainHeading__image:before, .mainHeading__image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  top: 100%;
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
  opacity: 1;
  left: 0;
}
.mainHeading__image:before {
  animation: imageBefore 1s 0.2s ease backwards;
}
@keyframes imageBefore {
  0% {
    height: 100%;
    top: 0;
  }
}
.mainHeading__image:after {
  background-image: linear-gradient(to top, #accbee 0%, #e7f0fd 100%);
  height: 100%;
  position: bottom;
  top: 0;
  opacity: 0.2;
}
.mainHeading__image img {
  width: 100%;
  height: 100%;
}

.cta {
  padding: 16px 32px;
  color: #637498;
  background-color: transparent;
  border: 1px solid rgba(99, 116, 152, 0.4);
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 32px;
  cursor: pointer;
  box-shadow: inset 0px 0px 0px rgba(99, 116, 152, 0.2);
  transition: all 0.4s ease;
}
.cta:hover {
  border: 1px solid rgba(99, 116, 152, 0.1);
  box-shadow: inset 0px -80px 0px rgba(99, 116, 152, 0.1);
  transform: translateY(-5px);
}
@media screen and (max-width: 799px) {
  .cta {
    margin-top: 16px;
  }
}


p,a {
  background: transparent;
}


.comment-wrapper {
  background: #fff;
  padding: 20px;
  margin: 20px auto;
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-form input,
.comment-form textarea,
.comment-form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #ddd;
}

.comment-form button {
  background: #5cb85c;
  color: #fff;
  border: none;
  cursor: pointer;
}

.comment-form button:hover {
  background: #4cae4c;
}

.comments-section {
  margin-top: 20px;
}

.comment {
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}

.comment:last-child {
  border-bottom: none;
}

.comment-header {
  font-size: 14px;
  color: #666;
}

.comment-date {
  float: right;
  color: #aaa;
  font-size: 12px;
}

.comment-body {
  margin-top: 5px;
  text-align: justify;
}

.delete-comment {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  float: right;
  margin-top: -10px;
  /* Adjust based on your design */
  border-radius: 5px;
}

.delete-comment:hover {
  background: #bb2f2f;
}

.section-event {
  margin: 2em 0;
  background: transparent;
}


.text--success {
  color: #198754;
  font-weight: bolder;  
  font-family:serif;
}

.white-text-transparent-bg {
  color: white;
  /* Sets the text color to white */
  background-color: transparent;
  /* Sets the background to transparent */
}

.container--main--w {
  width: 100%;
  /* Use 100% width for responsiveness */
  max-width: 1200px;
  /* Max width stays at 1200px */
  margin: 1em auto;
  padding-left: 1em;
  padding-bottom: 1em;
  border-radius: 4px;

}

.section-event-desc {
  margin: 2em auto;
  background: rgba(138, 43, 226, 0.8);
  border-radius: 4px;
  text-align: left;
  font-size: 2em;
  padding: 1em 1em 1em 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  /* Adjustments for tablets */
  .container--main {
    padding: 0 0.5em;
    /* Reduce padding on smaller devices */
  }

  .section-event-desc {
    margin: 1em 0;
    /* Smaller margin for smaller devices */
  }
}

@media (max-width: 480px) {

  /* Adjustments for smartphones */
  .container--main {
    padding: 0 0.5em;
    /* Keep padding reduced for very small devices */
  }

  .section-event-desc {
    margin: 1em 0;
    /* Keep margin reduced for very small devices */
  }
}
