/**
 * Consolidated CSS for theme features (Language Switcher, Scroll to Top, SEO Fakes).
 */

/* Language Switcher Styling (EN -> RU) */
.en-lang-sw {
    position: absolute;
    top: 15px; /* Adjust via PHP if admin bar is showing */
    right: 15px;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    font-family: Georgia, serif;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .en-lang-sw {
        right: auto;
        left: 15px;
    }
}

.en-lang-sw a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

.en-lang-sw .sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 10px;
    font-size: 11px;
}

.en-lang-sw .active {
    color: #f39c12;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(243, 156, 18, 0.4);
}

/* Scroll to Top styling */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #222;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* SEO Fake Headings */
.seo-fake-h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.en-captcha-wrap {
    margin-top: 15px;
    padding: 10px 0;
}
