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

* {
  box-sizing: border-box;
}

header {
  background: #f5f5f5;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

header .brand a {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #222;
  text-transform: uppercase;
  text-decoration: none;
}

nav a {
  margin: 0 10px;
  color: #222;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

nav a.active {
  color: #fc5000;
}

nav a:hover {
  color: #fc5000;
}

.hero {
  background: #e5e5e5;
  padding: 80px 0;
}

.hero .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 32px;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  color: #222;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #333;
}

.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.main-content h2 {
  font-size: 24px;
  margin: 40px 0 20px 0;
  text-transform: uppercase;
  color: #222;
}

.main-content p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #333;
}

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

.card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card a {
  display: block;
  padding: 10px;
  color: #222;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.card a:hover {
  color: #fc5000;
}

.object-details {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.object-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.object-gallery img {
  width: calc(33.333% - 6.666px);
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Lightbox styles for slideshow */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
}

.lightbox .prev,
.lightbox .next,
.lightbox .close {
  position: absolute;
  color: #ffffff;
  font-size: 40px;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}

.lightbox .close {
  top: 15px;
  right: 25px;
  font-size: 48px;
  line-height: 1;
}

.lightbox .prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

footer {
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: #777;
}
@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
  .object-gallery img {
    width: calc(50% - 5px);
  }
}
@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
  }
  .object-gallery img {
    width: 100%;
  }
}

/* Language switcher styles */
.lang-switch {
  position: fixed;
  left: 20px;
  bottom: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}
.lang-switch a {
  margin-right: 6px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.lang-switch a:hover {
  color: #fc5000;
}
.lang-switch span {
  margin-right: 6px;
  color: #222;
  font-weight: bold;
}
