.fancy-link {
  background: linear-gradient(90deg, #FFD700, #FFFACD, #FFD700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  transition: background-position 0.4s ease;
}

.fancy-link:hover {
  background-position: -100% center;
  text-shadow: 0 0 8px #FFD700;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f3f4f6;
  color: Black;
}
.contact-block a.gold-link {
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(90deg, #FFD700, #FFFACD, #FFD700);
  background-size: 300% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 5s linear infinite;
  transition: all 0.4s ease;
}

.contact-block a.gold-link:hover {
  background: linear-gradient(90deg, #FFFACD, #FFD700, #FFFACD);
  background-size: 300% auto;
  animation: shimmer-hover 5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes shimmer-hover {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.top-bar {
  background-color: #f3f4f6;
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

#dropdownMenu {
  display: none;
}

#dropdownMenu.visible {
  display: block;
}

.top-bar select,
.top-bar a,
.top-bar span {
  color: Black;
  background-color: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid Black;
  font-size: 1rem;
  font-weight: bold;
}

header.site-header {
  background-color: #f3f4f6;
  text-align: center;
  padding: 40px 20px;
}

.logo-main {
  font-size: clamp(40px, 8vw, 250px);
  font-weight: 900;
  text-transform: uppercase;
  background: #1e3a8a;
  background-size: 300% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 5s linear infinite;
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  line-height: 1.1;
}

.logo-sub {
  font-size: clamp(14px, 2vw, 32px);
  max-width: 90%;
  margin: 10px auto 0 auto;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #1e3a8a;
  background-size: 300% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

nav {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

/* Бургер-кнопка всегда видна */
.burger {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffd700;
  cursor: pointer;
  margin: 15px auto 0 auto;
  background: linear-gradient(145deg, #ffd700, #a67c00);
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  width: fit-content;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border: none;
}

/* Выпадающее меню */
.menu {
  display: none;
  list-style: none;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  margin: 0;
  gap: 10px;
}

.menu.show {
  display: flex;
}

.menu li {
  width: 100%;
  text-align: center;
}

.menu a {
  color: white;
  text-decoration: none;
  background: linear-gradient(145deg, #ffd700, #a67c00);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  width: 90%;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
}

.menu a:hover {
  background: linear-gradient(145deg, #a67c00, #ffd700);
}

.intro {
  text-align: center;
  padding: 40px 20px;
}

footer {
  background-color: #f3f4f6;
  text-align: center;
  padding: 20px;
  color: black;
}

.social-icons {
  margin-top: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin: 0 8px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.posts-section {
  padding: 40px 20px;
}

.post {
  margin-bottom: 40px;
  background: #f3f4f6;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: Black;
}

.post h2 {
  font-size: 1.5rem;
  color: Black;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.post p {
  margin: 10px 0;
  color: Black;
  font-size: 1rem;
}

.post img {
  max-width: 100%;
  margin-top: 15px;
  border-radius: 10px;
}

.main-wrapper {
  background-color: #f3f4f6;
}

/* 📱 Мобильный адаптив — необязателен отдельно теперь */
@media (max-width: 768px) {
  .logo-main {
    font-size: 32px;
  }

  .logo-sub {
    font-size: 14px;
    white-space: normal;
  }
}
.contact-block {
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: 	#ccd6dd;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-block h3 {
  color: #ffd700;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.contact-block p {
  margin: 8px 0;
  font-size: 1.05em;
}

.contact-block a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-block a:hover {
  color: #fffacd;
  text-shadow: 0 0 8px #ffd700;
}
.contact-section {
  background-color: #f3f4f6; /* фон как у body */
  color: white; /* текст золотистый */
  text-align: center;
  padding: 40px 20px;
}
#langSelector {
  background-color: #f3f4f6; /* бордовый */
  color: black; /* белый текст */
  border: 1px solid black;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
}
