body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.slideshow-container {
  flex: 1 0 auto;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 100%;
  height: calc(100vh - 100px); /* Adjust this value based on your footer height */
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

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

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.8);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.9);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.footer {
  background-color: #1a2b47;
  color: white;
  padding: 20px 0;
  text-align: center;
  flex-shrink: 0;
  margin-top: auto;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #f0a050;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.ticket-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  z-index: 1000;
  display: none;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: 90vh;
}

.ticket-modal h2 {
  color: #fff;
  background-color: #d85b00;
  padding: 15px;
  border-radius: 10px;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ticket-list .btn {
  margin: 5px 0;
  width: 100%;
  white-space: normal;
  height: auto;
  padding: 10px 15px;
  box-sizing: border-box;
  font-size: 14px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.2;
  display: block;
}

@media (min-width: 601px) {
  .ticket-modal {
    padding: 25px;
  }

  .ticket-list .btn {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .ticket-modal {
    width: 95%;
    padding: 15px;
  }

  .ticket-list .btn {
    font-size: 12px;
    padding: 12px 10px;
  }
}

.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overflow-y: auto;
}

.map-modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
  color: #333;
}

.map-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.map-description {
  margin-bottom: 20px;
  text-align: left;
}

.map-description h2 {
  color: #1a2b47;
  margin-bottom: 15px;
}

.map-description p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.transportation-info {
  text-align: left;
}

.transportation-info h3 {
  color: #1a2b47;
  margin-bottom: 15px;
}

.transportation-info h4 {
  color: #f0a050;
  margin-top: 15px;
  margin-bottom: 10px;
}

.transportation-info ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.transportation-info li {
  margin-bottom: 5px;
}

.map-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  background-color: #f0a050;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.map-modal .close-btn:hover {
  background-color: #e08030;
}

@media (min-width: 768px) {
  .map-modal-content {
    max-width: 80%;
  }
  
  .map-image {
    max-width: 55%;
  }
}

.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d85b00;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: none; /* Hidden by default */
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.notification-content p {
  margin: 0;
  padding-bottom: 10px;
}

.notification .close-notification {
  background-color: #ffffff;
  color: #d85b00;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.notification .close-notification:hover {
  background-color: #ff6c00;
}

/* Styles for ticket modal and buttons from index.html */
.ticket-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #333;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  max-width: 800px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.ticket-modal h2 {
  color: #1a2b47;
  text-align: center;
  margin-bottom: 20px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ticket-section {
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 10px;
}

.ticket-section h3 {
  color: #1a2b47;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
}

/* Promotion class */
.promotion {
  font-size: 1.03rem; /* Slightly increased font size for visibility */
  color: rgba(0, 0, 0, 0.91); /* Changed text color to black */
  margin-top: 3px;
  font-weight: bold; /* Make the text bold for better visibility */
}

.ticket-list .btn {
  margin-bottom: 10px;
  font-size: 14px;
  padding: 8px 12px;
  background-color: #d85b00;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background-color 0.3s;
}

.ticket-list .btn:hover {
  background-color: #ff6c00;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #1a2b47;
  cursor: pointer;
}

@media (max-width: 768px) {
  .slideshow-container {
    height: calc(100vh - 200px); /* Adjust for mobile */
  }

  .ticket-grid {
    grid-template-columns: 1fr;
  }

  .ticket-section h3 {
    font-size: 16px;
  }

  .ticket-list .btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 12px 0;
  }

  .dropdown {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 0;
    max-height: 300px;
    overflow-y: auto;
  }

  .content-wrapper {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .slide {
    margin-bottom: 0;
  }

  .buttons {
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  .buttons {
    gap: 8px;
    padding: 8px;
  }

  .btn {
    font-size: 14px;
    padding: 10px 0;
    width: 100%;
    max-width: 250px;
  }

  .content-wrapper {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .slide {
    margin-bottom: 0;
  }

  .buttons {
    margin-top: -10px;
  }
}