* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Jura;
}

html,
body {
  height: 100vh;
  width: 100%;
}

.hero {
  width: 100%;
  height: calc(100vh - 4rem);
  display: flex;
  flex-direction: row;
  margin-top: 4rem;
  align-self: center;
  justify-content: space-between;
  overflow: hidden;
}

.herotext {
  height: 100%;
  width: 45%;
  display: flex;
  flex-direction: column;
  padding: 5rem 0 0 5rem;
}

.herotext h1 {
  font-weight: 800;
  font-size: 7rem;
  color: #fd920f;
  transition: text-shadow 0.1s linear;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-shadow: 5px 5px 5px #cdcccb;
}
.herotext p {
  position: absolute;
  top: 18%;
  left: 6%;
  opacity: 0;
  visibility: hidden;
  font-weight: 500;
  color: gray;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.herotext p span {
  font-weight: 800;
  color: #fd920f;
}

.herotext h1:hover ~ p {
  opacity: 1;
  visibility: visible;
}
.herotext h1:active ~ p {
  opacity: 1;
  visibility: visible;
}

.herotext h3 {
  font-size: 1.3rem;
  line-height: 1.6rem;
  padding: 20px 5px 30px 5px;
  color: rgb(95, 94, 94);


}

.herotext .button {
  cursor: pointer;
  height: 3rem;
  width: 10rem;
  text-align: center;
  font-size: 2rem;
  border: none;
  margin: 10px 5px;
  background-color: #ff991c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 5px 5px 5px #d2d1d1;
}
.herotext .button:hover {
  background-color: #ff991c;
  color: white;
  font-weight:900;
  transform: scale3d(0.1);
  box-shadow: 0px 2px 20px #845c04;
  
}
.herotext .button:active {
  background-color: #ff991c;
  color: white;
  box-shadow: 0 4px 14px gray;
  font-weight:900;
}

.heroimg {
  height: 700px;
  width: 30%;
  display: flex;
  position: relative;
}

.heroimg img {
  height: 100%;
  width: 100%;
}

@media (max-width: 800px) {
  .hero {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    margin: 0px;
    height: calc(100vh - 3.5rem);
    margin-top: 3.5rem;
    background: url("../Media/Frame_m.png");
    background-size: 500px 400px;
    background-position: right bottom;
    background-repeat: no-repeat;
  }
  .heroimg {
    display: none;
  }

  .herotext {
    height: 50%;
    width: 100%;
    display: flex;
    position: relative;
    padding: 3rem 0 0 2rem;
  }
  .herotext h1 {
    font-weight: 800;
    font-size: 5rem;
  }

  .herotext h3 {
    width: 80%;
    font-size: 1.9vmax;
    padding: 10px 5px 15px 5px;
    text-shadow: none;
  }
  .herotext .button {
    cursor: pointer;
    height: 3rem;
    width: 8.5rem;
    text-align: center;
    font-size: 1.8rem;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    padding: 2px 0;
    transition: box-shadow 0.2s ease-in-out;
    display: inline-block;
    background-color: #ff991c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700;

  }

  .herotext p {
    position: absolute;
    top: 4%;
    left: 12%;
    opacity: 0;
    visibility: hidden;
    font-weight: 500;
    color: gray;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}


.events-section {
  text-align: center;
  padding: 20px;
  margin-top: 2rem;
}

.events-heading {
  font-size: 2.8rem;
  color: rgb(95, 94, 94);
  margin-bottom: 3rem;
}
.event-card {
  margin: 10px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: calc(22% - 20px);
  transition: 0.2s ease;
  border-radius: 3%;
  box-shadow: 5px 5px 5px #d2d1d1;
}
.event-card img {
  width: 100%;
  aspect-ratio: 10/9;
  transition: 0.2s ease;
}
.event-card:hover {
  box-shadow: 5px 5px 20px #714f03;
}
.event-card:hover img {
  transform: scale(1.15);
}

.event-title {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  font-size: 1.8rem;
  transition: transform 0.2s ease;
  text-shadow: inherit;
  z-index: 100;
}
.prev,
.next {
  display: none;
}
.view-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff991c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 5px 5px 5px #d2d1d1;

}
.view-more-btn:hover {
  font-weight:900;
  background-color: #ff991c;
  box-shadow: 0px 2px 20px #845c04;

}

@media (max-width: 800px) {
  .carousel {
    position: relative;
    width: 95%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
  }
  .carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .event-card {
    flex: 0 0 100%;
    margin: 0;
  }
  .event-card:hover img {
    transform: scale(1);
  }
  .prev,
  .next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
  }
  .prev {
    left: 10px;
  }
  .next {
    right: 10px;
  }
}

.team-section {
  text-align: center;
  padding: 20px;
  margin-top: 2rem;
}

.team-heading {
  font-size: 2.8rem;
  color: rgb(95, 94, 94);
  margin-bottom: 3rem;
}
.team-card {
  margin: 10px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: calc(22% - 20px);
  transition: 0.2s ease;
  border-radius: 3%;
  box-shadow: 5px 5px 5px #d2d1d1;

}
.team-card img {
  width: 100%;
  aspect-ratio: 10/9;
  transition: 0.2s ease;
}
.team-card:hover {
  box-shadow: 0px 2px 20px #845c04;

}
.team-card:hover img {
  transform: scale(1.15);
}

.team-title {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  font-size: 1.8rem;
  transition: transform 0.2s ease;
  text-shadow: inherit;
  z-index: 100;
}
.team-title p {
  font-size: 1.2rem;
}
.prev-team,
.next-team {
  display: none;
}
.view-more-btn-team {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #ff991c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  font-weight:500;
  box-shadow: 5px 5px 5px #d2d1d1;
}
.view-more-btn-team:hover {
  background-color: #ff991c;
  box-shadow: 0px 2px 20px #845c04;
  font-weight:900;

}

@media (max-width: 800px) {
  .carousel-team {
    position: relative;
    width: 95%;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
  }
  .carousel-inner-team {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .team-card {
    flex: 0 0 100%;
    margin: 0;
  }
  .team-card:hover img {
    transform: scale(1);
  }
  .prev-team,
  .next-team {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
  }
  .prev-team {
    left: 10px;
  }
  .next-team {
    right: 10px;
  }
}

.contact {
  text-align: center;
  padding: 20px;
  margin-top: 2rem;
  
}

.contact-heading {
  display: block;
  text-align: center;
  font-size: 2.8rem;
  color: rgb(95, 94, 94);
  margin-bottom: 1rem;
}

.contact-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;

}
.contact-image,
.contact-form {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.contact-form{
  box-shadow: 5px 5px 5px #d2d1d1;

}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 5px 5px 5px #d2d1d1;
  
}
.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  
}
.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  box-shadow: 5px 5px 5px #d2d1d1;

}
form textarea {
  max-height: 200px;
  min-height: 80px;
  max-width: 100%;
  min-width: 100%;
}
.contact-form {
  background-color: #ffe9d5;
  border-radius: 10px;
  margin: 20px 0;
}
.contact-form button {
  background-color: #fd920f;
  color: white;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  transition: 0.2s ease-in-out;
}
.contact-form button:hover {
  background-color: #fd920f;
  box-shadow: 0px 2px 20px #845c04;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column-reverse;
    height: auto;
  }
  .contact-image,
  .contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
