* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { height: 100%; font-family: Arial, sans-serif; }
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: black;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.btn {
  background: #28a745;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  margin: 0.5rem;
  display: inline-block;
}
.info {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}
.info h2 {
  margin-bottom: 1rem;
}
.info ul {
  list-style: none;
  padding-left: 0;
}
.info ul li::before {
  content: "\2713 ";
  color: green;
}
.map {
  text-align: center;
  margin: 20px 0;
}
.contact-buttons {
  margin-top: 1rem;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.lang-switch {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10;
}
.lang-switch a {
  margin: 0 5px;
  color: white;
  font-weight: bold;
  text-decoration: underline;
}
.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.reviews img {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}