body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
}

.logo {
  font-weight: bold;
  letter-spacing: 2px;
}

.language-switcher button {
  background: transparent;
  color: white;
  border: 1px solid white;
  margin-left: 5px;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: red;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  font-weight: bold;
}

.about {
  display: flex;
  padding: 100px 10%;
  gap: 40px;
}

.about img {
  width: 50%;
}

.services {
  padding: 100px 10%;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #111;
  padding: 40px;
  flex: 1;
  border: 1px solid red;
}

.gallery {
  padding: 100px 10%;
}

.gallery-grid {
  display: flex;
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
}

.contact {
  padding: 100px 10%;
  text-align: center;
}

footer {
  text-align: center;
  padding: 40px;
  background: #111;
}
