body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 30px;
}

.header-container h1 {
  background: linear-gradient(120deg, #ccc 20%, #eee 40%, #ccc 60%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 48px;
  animation: shine 3s linear infinite;
  margin-bottom: 10px;
}

.see-prices-button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 18px;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  margin-top: 20px;
}

.see-prices-button:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}

@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* Slideshow Styles */
#slideshow {
  margin: 40px auto;
  width: 90%;
  max-width: 800px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  background-color: #111;
}

#slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 12px;
}

#slideshow .slide.active {
  display: block;
}

#slideshow .prev,
#slideshow .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  user-select: none;
  z-index: 10;
  transition: background-color 0.3s;
}

#slideshow .prev:hover,
#slideshow .next:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

#slideshow .prev {
  left: 10px;
}

#slideshow .next {
  right: 10px;
}

#slideshow .dots {
  text-align: center;
  padding-top: 12px;
}

#slideshow .dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

#slideshow .dot.active,
#slideshow .dot:hover {
  background-color: white;
}

/* Schedule Table */
.schedule-title {
  text-align: center;
  color: white;
  font-size: 36px;
  margin-top: 60px;
}

.schedule-table {
  width: 60%;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #1c1c1c;
  border: 1px solid #444;
  color: white;
}

.schedule-table th,
.schedule-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #555;
}

.schedule-table th {
  background-color: #333;
  font-size: 20px;
}

.schedule-table td {
  font-size: 18px;
}

/* Appointment Section */
#appointment-section {
  margin-top: 80px;
  padding: 40px;
  text-align: center;
}

#appointment-section h2 {
  color: white;
  text-align: center;
}

.button-container {
  text-align: center;
}
.cards-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 60px 30px;
  flex-wrap: wrap;
  background-color: black;
}

.card {
  background-color: #1c1c1c;
  color: white;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.card h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
  color: white;
}

.card .price {
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
}
.card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
  color: white;
}
.booking-form-section {
  background-color: black;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.booking-form {
  background-color: #1c1c1c;
  padding: 40px;
  border-radius: 16px;
  color: white;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin-top: 20px;
  font-weight: bold;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  margin-top: 8px;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #333;
  color: white;
  font-size: 16px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid white;
}

.booking-form button {
  margin-top: 30px;
  padding: 12px;
  background-color: white;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #ccc;
}
.book-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: white;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.book-button:hover {
  background-color: #ccc;
}
.card ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
}

.card ul li {
  margin-bottom: 8px;
  font-size: 16px;
}
.header-container a {
  color: inherit;
  text-decoration: none;
}

.header-container a:hover {
  text-decoration: underline;
}

