body {
  font-family: sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #333;
}

header {
  background: #222;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

h3{
  display: inline-block;
}

.highlight-message {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  background-color: rgba(255, 255, 255, 0.4); /* lighter, softer */
  padding: 1rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 8px;
  animation: fadeUp 1s ease-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px); /* subtle glass effect */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}


/* Animation remains the same */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweak */
@media (max-width: 600px) {
  .highlight-message {
    font-size: 1.3rem;
    padding: 0.75rem 1rem;
  }
}



nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  background: #ffcc00;
  padding: 2rem;
  animation: fadeInHero 1.2s ease-in;
}

@keyframes fadeInHero {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.booking, .map, .contact {
  padding: 2rem;
  background: #fff;
  margin: 1rem auto;
  max-width: 800px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form input, form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form label, form select {
  padding:0.75rem;
  margin-bottom: 1rem;
}

button {
  display: inline-block;
  background: #222;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.btn-pay {
  display: inline-block;
  margin-top: 1rem;
  background: #28a745;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}

.map-container iframe {
  width: 100%;
  border: 0;
  height: 300px;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
