body {
  font-family: "Poppins", sans-serif;
  background: #272044;
  color: #fff;
  margin: 0;
  padding: 0;
}

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

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/whitefish.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

header h1 {
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  margin: 30px 0;
  filter: drop-shadow(2px 2px 2px black);
}

header h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.5;
  margin: 0;
  filter: brightness(1.1);
}

header h3 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
  filter: contrast(120%);
}

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #272044;
  padding: 16px 32px;
  margin-top: 16px;
  display: inline-block;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  background: white;
  transition: background 0.3s ease;
}

header a:hover {
  background: #ffdf6c;
}

.secondary-button {
  background: #f0f0f5;
  color: #272044;
}

.gallery {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
  color: #272044;
}

.gallery h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

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

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  filter: grayscale(10%) brightness(105%);
}

.card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
  filter: none;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(39, 32, 68, 0.85);
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.card:hover .caption {
  transform: translateY(0);
}

.places {
  background-color: #f0f0f5;
  padding: 80px 20px;
  color: #272044;
  text-align: center;
}

.places h2 {
  font-size: 48px;
  margin-bottom: 40px;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.place-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.place-card:hover {
  transform: translateY(-5px);
}

.place-media-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.place-image-side,
.map-embed-side {
  flex: 1 1 300px;
  border-radius: 6px;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
}

.map-embed-side {
  height: 200px;
  border: 0;
}

.place-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #272044;
}

.place-card p {
  font-size: 15px;
  line-height: 1.6;
}

.learn-more-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #272044;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.learn-more-button:hover {
  background-color: #4b3ca4;
}

.table-section {
  background-color: #fff;
  color: #272044;
  padding: 40px 20px;
  text-align: center;
}

.table-section table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 700px;
}

.table-section th,
.table-section td {
  border: 1px solid #ccc;
  padding: 12px;
}

.table-section th {
  background-color: #f0f0f5;
  font-weight: bold;
}

.footer {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/Fiborn Quarry.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 20px 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-credit {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-credit a {
  color: #fff;
  text-decoration: underline;
}

.footer-credit a:hover {
  color: #ffdf6c;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 48px;
  }
  header h2 {
    font-size: 24px;
  }
  .place-media-row {
    flex-direction: column;
  }
  .place-image-side,
  .map-embed-side {
    height: 180px;
  }
}
