main .container {
  max-width: 1000px;
  margin: 40px auto;
  margin-top: 0;
  padding: 0 20px;
}

.events {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 5rem;
}

.event {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
}

.calendar-box {
  background: #fff;
  border: 2px solid #f1a661;
  width: 100px;
  height: 100px;
  text-align: center;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.calendar-box .month {
  background: #f1a661;
  color: white;
  padding: 5px;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.calendar-box .day {
  font-size: 2rem;
  margin: auto 0;
  font-weight: bold;
}

.info h3 {
  margin: 0 0 5px;
  color: #333;
}

.info p {
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .event {
    flex-direction: column;
    text-align: center;
  }
  .calendar-box {
    margin-bottom: 10px;
  }
}
.event-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.event-photos img {
  width: 100%;
  border-radius: 8px;
}

/* KSH */
.rsvp-btn {
  text-decoration: none;
  background-color: var(--card-bg);
  color: var(--accent);
  border: none;
  padding: 8px 18px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.rsvp-btn:hover {
  background-color: var(--text);
  color: var(--bg-main);
  transform: scale(1.05);
}

/* body {
      margin: 0;
      padding: 0;
      background-color: #FFFBDE;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    } */
.manual-carousel-wrapper {
  position: relative;
  width: 75%;
  aspect-ratio: 16 / 10;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.manual-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(70, 130, 169, 0.8);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(116, 155, 194, 0.9);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}
