/* Locations Page Styling */

body {
  background: #fff8fb;
  color: #333;
  font-family: 'Playfair', sans-serif;
  margin: 0;
  padding: 0;
}

/* Header inherited look */
.main-header {
  background: #ffffff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #2c3e50;
}

.site-title {
  color: #2c3e50;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
}

.nav a {
  color: #d1daaf;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: #2c3e50;
}

/* Page title */
.page-title {
  text-align: center;
  color: #2c3e50;
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* Dropdown Section */
.locations-list {
  max-width: 700px;
  margin: 0 auto 5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
}

.location-item {
  border-bottom: 1px solid #eee;
}

.dropdown-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.dropdown-btn:hover {
  color: #2c3e50;
}

.plus {
  font-weight: bold;
  font-size: 1.3rem;
  color: #2c3e50;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 1rem;
}

.dropdown-content.show {
  max-height: 200px;
  transition: max-height 0.4s ease-in;
}

.dropdown-content p {
  margin: 0.5rem 0;
  color: #555;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-top: 2px solid #2c3e50;
  color: #777;
  font-size: 0.9rem;
}
