/* body {
  text-align: center;
} */
/* a.trigger {
  display: inline-block;
  margin: 15px; 
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

a.trigger:hover {
  background: #0056b3;
} */

/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background: rgb(24, 24, 24);
  width: 100%;
  max-width: 1200px;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: #555;
}

/* Carousel */
.carousel {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  width: 80%;
  border-radius: 10px;
}

.carousel-controls {
  margin-top: 10px;
  text-align: center;
}

.carousel-controls button {
  background: #ff0000;
  color: white;
  border: none;
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}
/* 
.carousel-controls button:hover {
  background: #4e0909;
} */

.image-links {
  margin-top: 8px;
}

.image-links a {
  margin: 0 8px;
  color: #007bff;
  text-decoration: none;
}

.image-links a:hover {
  text-decoration: underline;
}
