body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
}
header {
  background-image: url('../images/webp/banner.webp?v=3');
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
}
.logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  max-width: 90%;
  filter: drop-shadow(0 0 6px #000);
}
.banner-content {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.banner-content h1 {
  font-size: 2.4rem;
  background-color: rgba(0,0,0,0.6);
  padding: 14px 22px;
  border-radius: 10px;
  margin-bottom: 25px;
  color: #d39e00;
  text-shadow: 1px 1px 2px #000;
}
a.button {
  display: inline-block;
  background: linear-gradient(145deg, #e0ad18, #b77f00);
  color: #1a1a1a;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  border: 2px solid #a56d00;
  box-shadow: inset 0 0 0px #fff, 2px 2px 8px #000;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  margin: 10px;
}
a.button:hover {
  background: linear-gradient(145deg, #f7c942, #b77f00);
  transform: scale(1.05);
  box-shadow: inset 0 0 3px #fff, 0 0 10px #d39e00;
}
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}
section h2 {
  color: #d39e00;
  text-shadow: 1px 1px 2px #000;
}
ul {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}
footer {
  background-color: #111;
  padding: 30px;
  font-size: 0.9rem;
}
footer a {
  color: #d39e00;
  text-decoration: none;
}
.lang-switcher {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 1rem;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 8px;
}
.lang-switcher a {
  color: #f9c74f;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
}
.lang-switcher a:hover {
  text-decoration: underline;
}

/* Блок связи */
.contact-section {
  padding-top: 20px;
  padding-bottom: 70px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 48px 32px;
  border: 1px solid rgba(211, 158, 0, 0.55);
  border-radius: 14px;
  background:
    radial-gradient(circle at top, rgba(211, 158, 0, 0.16), transparent 58%),
    linear-gradient(145deg, rgba(42, 42, 42, 0.96), rgba(18, 18, 18, 0.98));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    inset 0 0 35px rgba(211, 158, 0, 0.05);
}

.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 120px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #d39e00, transparent);
}

.contact-panel::before {
  top: 20px;
}

.contact-panel::after {
  bottom: 20px;
}

.contact-kicker {
  margin: 0 0 12px;
  color: #f9c74f;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.contact-text {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #ddd;
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  padding: 14px 24px;
  border: 2px solid #d39e00;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  color: #f9c74f;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(211, 158, 0, 0);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  transform: translateY(-2px);
  background-color: #d39e00;
  color: #1a1a1a;
  box-shadow: 0 0 18px rgba(211, 158, 0, 0.35);
  outline: none;
}

@media (max-width: 600px) {
  .contact-panel {
    padding: 42px 20px;
  }

  .contact-text {
    font-size: 1rem;
  }

  .contact-email {
    box-sizing: border-box;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
}
