/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Container for Locations */
.locations-container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  padding: 40px 20px;
}

/* Heading */
h1 {
  font-size: 36px;
  color: #b8860b; /* Dark Goldenrod */
  margin-bottom: 40px;
  font-weight: bold;
}

/* Locations List */
.locations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.location-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.location-item h2 {
  font-size: 28px;
  color: #b8860b; /* Dark Goldenrod */
  margin-bottom: 15px;
  font-weight: bold;
}

.location-item a {
  text-decoration: none;
  display: inline-block;
  background-color: #ffb300; /* Amber */
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.location-item a:hover {
  background-color: #daa520; /* Goldenrod */
  transform: scale(1.05);
}

/* Button - Back to Home */
.back-home {
  margin-top: 30px;
  display: inline-block;
  background-color: #b8860b; /* Dark Goldenrod */
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-home:hover {
  background-color: #c89b0e; /* Slightly lighter goldenrod */
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .locations-container {
    padding: 30px 15px;
  }

  .locations-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .back-home {
    font-size: 16px;
    padding: 10px 18px;
  }

  .location-item a {
    font-size: 14px;
    padding: 10px 16px;
  }
}

.location-icon {
  font-size: 32px;
  color: #ffb300; /* Amber */
  margin-bottom: 10px;
}

.location-item p {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}
