body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #1b1b1b url('tuast.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #d6c199;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(0, 0, 0, 0.7);
}
.logo {
  height: 60px;
}
nav a {
  color: #d6c199;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
nav a:hover, nav a.active {
  text-decoration: underline;
}
.lang-switch {
  display: inline-block;
  margin-left: 20px;
}
.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero h1 {
  font-size: 2.5em;
  margin: 0;
}
.tagline {
  font-size: 1.3em;
  color: #c4a962;
}
.intro, .contact-info, .contact-form {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #d6c199;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.contact-form button {
  background-color: #c4a962;
  color: black;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #c4a962;
  font-size: 0.9em;
}