body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1f1f1f;
  background-image: url('/images/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #f5f5f5;
}

header {
  text-align: center;
  padding: 0;
  background-color: rgba(10, 35, 66, 0.88);
}

h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
}
.logo {
  width: 100%;
  display: block;
  margin: 0 auto 40px auto;
}
.intro {
  text-align: center;
  padding: 40px 30px;
  max-width: 900px;
  margin: 40px auto;
  background-color: rgba(245, 235, 215, 0.88);
  border-radius: 16px;
}

.intro h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111111;
}

.intro p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #111111;
}
.cta-button {
  display: inline-block;
  margin-top: 5px;
  padding: 18px 40px;
  background-color: #d4b06a;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}
.cta-button:active {
  transform: scale(0.97);
}
.gallery {
  padding: 60px 20px;
  background-color: rgba(39, 39, 39, 0.88);
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
}

.gallery-grid img {
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}
footer {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(17, 17, 17, 0.88);
}

footer p {
  margin: 10px 0;
  color: #bbbbbb;
}
.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 40px;
  background-color: rgba(27, 27, 27, 0.88);
  text-align: center;
}

.details div {
  background-color: #242424;
  padding: 30px;
  border-radius: 12px;
}

.details h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #d4b06a;
}

.details p {
  color: #d0d0d0;
  line-height: 1.6;
}
@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .details {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }

  .intro h2 {
    font-size: 2rem;
  }

}