/* Base Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
}

h1, h2 {
  color: #D4AF37;
  text-align: center;
  margin: 20px 0;
}

a {
  color: #D4AF37;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #1a1a1a;
  padding: 80px 20px 60px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 40px;
}

/* Search Form */
form.search-form {
  background: #1e1e1e;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.search-form input[type="text"],
.search-form input[type="number"],
.search-form input[type="date"] {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #555;
  background-color: #2a2a2a;
  color: #fff;
  min-width: 160px;
}

.search-form input::placeholder {
  color: #aaa;
}

/* Move quote button under form fields */
.search-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-basis: 100%;
  justify-content: center;
  margin-top: 10px;
}

.search-form button {
  background-color: #D4AF37;
  color: #000;
  font-weight: bold;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 15px;
}

.search-form button:hover {
  background-color: #e5c771;
}

/* Destinations Section */
h2 {
  margin-top: 50px;
  font-size: 24px;
}

.tile-container {
  display: flex;
  overflow-x: auto;
  padding: 20px;
  gap: 20px;
  scroll-behavior: smooth;
}

.tile {
  flex: 0 0 auto;
  width: 200px;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.tile img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-bottom: 2px solid #333;
}

.tile a {
  display: block;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  color: #f5f5f5;
}

/* Shuffle Button */
form[method="POST"] {
  text-align: center;
  margin-bottom: 40px;
}

form[method="POST"] button {
  background-color: #D4AF37;
  color: #000;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

form[method="POST"] button:hover {
  background-color: #e5c771;
}

/* Footer */
footer {
  background: #181818;
  padding: 20px;
  text-align: center;
  color: #ccc;
}

footer a {
  color: #D4AF37;
  margin: 0 10px;
}

footer a:hover {
  color: #fff;
}