.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #f8f8f8;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed; /* added to make header fixed */
  top: 0; /* added to fix it to the top */
  left: 0;
  width: 100%; /* added to extend to the full width */
  z-index: 100; /* To ensure it's above other content*/
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: "Lora", serif;
}

header h1 a {
  text-decoration: none;
  color: #333;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #e9a50d;
}

.cta-button {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d4940b;
}

#sites-hero {
  background: linear-gradient(135deg, #f0e6d2, #e0c8a1);
  padding: 60px 0;
  text-align: center;
}

#sites-hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Lora", serif;
}
#sites-hero p {
  font-size: 1.1rem;
}

#sites-list {
  padding: 60px 0;
}
#sites-list h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.site-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.site-card:hover {
  transform: translateY(-5px);
}
.site-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.site-card h3 {
  padding: 10px;
  margin: 0;
  font-family: "Lora", serif;
}
.site-card p {
  padding: 0 10px 10px 10px;
}

.learn-more-btn {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}
.learn-more-btn:hover {
  background-color: #d4940b;
}

.site-detail {
  padding: 60px 0;
  display: none;
}
.site-detail.active {
  display: block;
}

.site-detail h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.site-details-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.site-details-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-align: justify;
}
.site-details-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Lora", serif;
  text-align: left;
}
.site-details-content ul {
  text-align: left;
  padding-left: 20px;
}
.site-details-content li {
  margin-bottom: 5px;
}

.map-image {
  width: 80%;
  max-width: 600px;
  height: auto;
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-sites {
  display: block;
  background-color: #e9a50d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  margin: 20px auto;
  max-width: 200px;
  transition: background-color 0.3s;
}
.back-to-sites:hover {
  background-color: #d4940b;
}
