body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #222222;
  line-height: 1.6;
  background-image: url("_images/background.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(2px);
  z-index: -1;
}

#wrapper {
  max-width: 1000px;
  margin: 40px auto;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

header {
  background: rgba(85, 107, 47, 0.9);
  backdrop-filter: blur(6px);
  color: white;
  text-align: center;
  padding: 35px 20px;
}

header h1 {
  margin: 0;
  font-size: 2.4em;
  letter-spacing: 1px;
}

header h2 {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: normal;
  letter-spacing: 0.5px;
}

nav {
  margin-top: 20px;
  line-height: 1.8;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

main {
  padding: 40px;
  background-color: transparent;
}

main h1,
main h2,
main h3 {
  color: #556B2F;
  letter-spacing: 0.5px;
}

main h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

main h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

main p {
  margin-bottom: 18px;
  font-size: 1.05em;
}

main ul {
  margin-bottom: 20px;
  padding-left: 22px;
}

main li {
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 30px auto;
}

.carousel-track {
  position: relative;
}

.slide {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slide.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(85, 107, 47, 0.85);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(107, 142, 35, 0.95);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.button {
  display: inline-block;
  background-color: #556B2F;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0.5px;
  width: fit-content;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #6B8E23;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.featured {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-link {
  display: block;
  padding: 25px;
  border-radius: 10px;
  background: white;
  text-decoration: none;
  color: #222222;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.featured-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.featured-link h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #556B2F;
}

.photo {
  text-align: center;
  margin: 25px 0;
}

.photo img {
  width: 300px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(247, 247, 247, 0.9);
  font-size: 14px;
}

footer a {
  color: #556B2F;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #wrapper {
    margin: 20px;
  }

  main {
    padding: 25px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .carousel {
    max-width: 100%;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 10px 14px;
  }

  nav a {
    display: inline-block;
    margin: 6px 8px;
  }
}