* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e6e0d4;
  font-family: Georgia, serif;
}
/* ===============================
   LANGUAGE DROPDOWN (TOP RIGHT)
================================ */

.lang-switcher {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1000;
}

.lang-switcher select {
  font-family: Garamond, Georgia, serif;
  font-size: 14px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #c9c2b8;
  border-radius: 6px;
  color: #4a463f;
  cursor: pointer;
}

.lang-switcher select:focus {
  outline: none;
  border-color: #8a9a8a;
}

/* HERO IMAGE */
.front-door-image {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* BUTTON SECTION */
.scroll-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -17.17px;      /* ← THIS IS YOUR “PIXELS AWAY” CONTROL */
  padding-bottom: 48px;  /* language space */
}

/* BUTTON ROWS */
.scroll-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTON IMAGES */
.scroll-btn img {
  width: 110px;
  height: auto;
  cursor: pointer;
}
/* BUTTON IMAGES */
.scroll-btn img {
  width: 110px;
  height: auto;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* HUNTER GREEN + GOLD GLOW */
.scroll-btn img:hover {
  transform: translateY(-2px) scale(1.04);
  filter:
    /* Inner hunter green glow */
    drop-shadow(0 0 6px rgba(27, 74, 48, 0.85))
    drop-shadow(0 0 12px rgba(34, 94, 60, 0.65))

    /* Outer soft gold haze */
    drop-shadow(0 0 18px rgba(212, 175, 55, 0.55))
    drop-shadow(0 0 28px rgba(255, 220, 120, 0.35));
}
/* LANGUAGE SPACE */
.language-space {
  height: 32px;
}
.front-intro {
  max-width: 520px;
  margin: 10px auto 4px;
  padding: 0 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #5a554d;
}
.front-intro-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
/* ===============================
   FOOTER
================================ */

.site-footer {
  margin-top: 36px;
  padding: 20px 12px 28px;
  text-align: center;
  font-size: 13px;
  color: #6b655d;
}

.site-footer a {
  color: #6b655d;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-line {
  margin: 4px 0;
}
.scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  margin-top: 8px;
  font-size: 15px;
  text-align: center;
}

/* Hide labels in English */
html[lang="en"] .translatable {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .scroll-btn img { width: 96px; }
}

@media (max-width: 480px) {
  .scroll-btn img { width: 86px; }
}
