/* css styles */

.event-details {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.event-details p {
  font-size: 1.5rem;
  margin: 0.8rem 0;
  line-height: 1.6;
}

.event-details strong {
  font-size: 1.8rem;
  width: 100px;
}

.countdown-container {
  text-align: center;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.countdown-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.countdown-number {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.progress-container {
  text-align: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.35) 0%, rgba(118, 75, 162, 0.35) 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.progress-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  color: white;
}

.progress-bar-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.progress-bar {
  width: 100%;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: #ed7182;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 12px;
}

.progress-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
}

.progress-animated.progress-striped {
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}

.progress-text {
  font-size: 0.9rem;
  margin-top: 0.8rem;
  color: white;
  font-weight: 500;
}

.raffle-container {
  text-align: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.35) 0%, rgba(118, 75, 162, 0.35) 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.raffle-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  color: white;
}

.three-column-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.section-container {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 5px solid #667eea;
  color: inherit;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.section-container h2 {
  margin-top: 0;
  color: white;
  font-size: 1.5rem;
}

.section-container ul {
  margin-bottom: 0;
  flex-grow: 1;
}

.section-container-featured {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.2) 0%, rgba(245, 87, 108, 0.2) 100%);
  border-left: 5px solid #f5576c;
  color: inherit;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
  display: flex;
  flex-direction: column;
}

.section-container-featured h2 {
  margin-top: 0;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.section-container-featured ul {
  margin-bottom: 0;
  flex-grow: 1;
}

.section-container-featured li {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.ticket-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.ticket-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
  color: white;
}

.section-container-details {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-left: 5px solid #667eea;
  color: inherit;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-container-details h2 {
  margin-top: 0;
  color: white;
  font-size: 1.3rem;
}
.section-container-gallery {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 5px solid #667eea;
  color: inherit;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-container-gallery h2 {
  margin-top: 0;
  color: white;
  font-size: 1.5rem;
}

.gallery-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 62.5%;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.gallery-image:first-child {
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.gallery-dots {
  text-align: center;
  padding: 1rem 0 0 0;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #667eea;
}
.section-container-details strong {
  color: white;
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
