
.event{
  background:hsla(40,100%,43%,0.6);
  text-align: center;
}
.countdown-wrapper {
  text-align: center;
  padding: 2rem;
  border-radius: 1.5rem;

}

.countdown-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #111827;
}

.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.time-box {
  background: #111827;
  color: white;
  border-radius: 1rem;
  padding: 1rem;
  min-width: 70px;
  transition: 0.3s;
}

.time-box span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.time-box small {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
  color: #d1d5db;
}

.event{
padding: 20px;
}
.event h1, .event h3{
  text-align: center;
}
.event h1{
  padding-top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  color: white;
}

.event h3{
  font-weight: bold;
  font-size: 30px;
  margin-bottom: -15px;
}
.event a{
  text-align: center;
  display: inline-block;
  width: 150px;
  border-radius: 25px;
  background: white;
  margin:5px;
  color: black;
  padding: 10px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}
.latest{
  padding: 20px;
  text-align: center;
}
.latest h1,.gallery h1{
  color: white;
  text-align: center;
  font-size: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
/*.latest div{
  width:100%;
  margin: auto;
}*/
.latest a,.gallery a{
  text-align: center;
  display: block;
  width: 170px;
  margin: auto;
  margin-top: 30px;
  border-radius: 30px;
  margin-bottom: 30px;
  color: white;
  background: hsl(25,100%,50%);
  padding: 15px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}
.latest a:hover,.gallery a:hover{
  background: hsl(45,100%,50%);
}
.gallery a, .gallery h1{
  color: white;
}
.gallery{
  text-align: center;
  padding: 20px;
}

.gallery h1{
  margin-bottom: -20px;
}
.carousel-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.bio-section {
  background:hsla(0,0%,93%,0.2);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color:white;
}

.bio-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bio-image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #ddd;
}

.bio-content h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: hsl(40,100%,43%);
}

.bio-content .name {
  font-size: 1.4em;
  font-weight: bold;
  margin: 10px 0 5px;
}

.bio-content .title {
  font-size: 1em;
  color: white;
  margin-bottom: 20px;
}

.bio-content .description {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bio-content .verse {
  font-style: italic;
  color:white;
}

/* Responsive */
@media (min-width: 768px) {
  .bio-container {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }

  .bio-image {
    flex: 0 0 180px;
  }

  .bio-content {
    flex: 1;
  }
}


@media (max-width: 600px) {
  .carousel-btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}

@media(min-width: 1000px){

 .latest h1,.gallery h1{
  font-size: 30px;
}
.event h3{
  font-size: 35px;
}
 .event h1{
    font-size: 25px;
 }

}