body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f1ea;
  color: #3a2e25;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.hero {
  height: 95vh;
  background: url("images2/bilbo-plaza.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #5f6f52;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #3a2e25;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 12px;
}

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

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}

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

.gallery img {
  width: 100%;
  border-radius: 12px;
}

.reviews {
  background: #ffffff;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review {
  background: #f5f1ea;
  padding: 30px;
  border-radius: 12px;
  font-style: italic;
}

.review span {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-weight: 500;
}

.contact {
  text-align: center;
  background: #e9e4dc;
}

footer {
  text-align: center;
  padding: 20px;
  background: #3a2e25;
  color: white;
}

@media(max-width: 900px){
  .about-grid {
    grid-template-columns: 1fr;
  }
}
