html {
  scroll-behavior: smooth;
}


.custom-bullets ul {
  list-style: none;
  padding-left: 1.25rem;
}
.custom-bullets ul li::before {
  content: "-";
  color: #16a34a;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}


.step {
  display: none;
}
.step.active {
  display: block;
}
.donation-type-btn.active {
  background-color: #7D5A50;
  color: white;
}
.amount-btn.active {
  border-color: #7D5A50;
  border-width: 2px;
  color: #7D5A50;
}
.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
.progress-dot.active {
  background-color: white;
}

#map {
  height: 300px;
  width: 100%;
}

@media (min-width: 768px) {
  #map {
    height: 400px;
  }
}


.fc {
  --fc-border-color: #e5e7eb;
  --fc-button-text-color: #fff;
  --fc-button-bg-color: #10b981;
  --fc-button-border-color: #10b981;
  --fc-button-hover-bg-color: #059669;
  --fc-button-hover-border-color: #059669;
  --fc-today-bg-color: #ecfdf5;
}

.fc .fc-toolbar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.fc-event {
  background-color: #10b981 !important;
  border: none !important;
  color: white !important;
  font-size: 0.875rem;
  padding: 10px 10x;
  border-radius: 4px;
}

.fc-daygrid-event-dot {
  border-color: #10b981;
}

.fc-scrollgrid {
  border-radius: 0.5rem;
  overflow: hidden;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.dot-navigation button {
  height: 8px;
  width: 24px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.dot-navigation button.active {
  background-color: #1F2937; /* Active dot */
}
.dot-navigation button.inactive {
  background-color: #D1D5DB; /* Inactive dot */
}


/* Gallery slider */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}

.gallery-slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 600px; /* Increased height */
}

.gallery-slide {
  min-width: 100%;
  height: 100%;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
}

.gallery-nav button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-nav button:hover {
  background-color: var(--color-primary);
  color: white;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-dot.active {
  background-color: var(--color-primary);
}


.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
      font-size: 3rem;
  }
}


.hover:underline:hover {
  text-decoration: underline;
}