/*
Theme Name: Vene
Description: Дочерняя тема Vene для кастомных стилей High Beam Radio
Author: Anril
Template: plover
Version: 1.0
*/

/* === HIGH BEAM RADIO - GOLD RETRO BUTTONS === */
button,
input[type="submit"],
.btn,
.wp-block-button__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: 1px solid #d1a22b;
  background: linear-gradient(180deg, #f6d77a 0%, #d1a22b 100%);
  color: #1b1b1b;
  border-radius: 8px;
  padding: 8px 22px;
  min-width: 120px;
  white-space: nowrap;
  box-shadow: 0 0 8px rgba(209, 162, 43, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

button:hover,
input[type="submit"]:hover,
.btn:hover,
.wp-block-button__link:hover {
  background: linear-gradient(180deg, #ffeb9c 0%, #e1b94a 100%);
  box-shadow: 0 0 14px rgba(241, 204, 74, 0.6);
  transform: translateY(-1px);
  color: #000;
}

button:active,
.btn:active {
  transform: scale(0.98);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* === FIX: WPBakery layout shrink === */
.wpb-content-wrapper {
  max-width: 98%;
  margin: 0 auto;
  padding: 30px 20px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* === RETRO GOLD DIVIDER === */
.has-cool-to-warm-spectrum-gradient-background {
  background: linear-gradient(90deg, #3b2b06 0%, #f7d674 15%, #d1a22b 50%, #f7d674 85%, #3b2b06 100%) !important;
  box-shadow: 0 0 12px rgba(241, 204, 74, 0.45);
  height: 4px;
  border: none;
  position: relative;
  overflow: hidden;
}

.has-cool-to-warm-spectrum-gradient-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: goldShine 3.5s infinite linear;
}

@keyframes goldShine {
  0%   { left: -25%; }
  100% { left: 125%; }
}

/* === RETRO GOLD HEADER === */
/* === HEADER BUTTONS: RETRO GOLD COMPACT === */

/* Оставляем оригинальную кнопку переключения темы без изменений */
.plover-hide-on-dark .wp-block-button__link,
.plover-hide-on-light .wp-block-button__link {
  all: unset; /* полностью убирает твои глобальные стили */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.25s ease;
}
.plover-hide-on-dark .wp-block-button__link:hover,
.plover-hide-on-light .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Золотой стиль только для LOG IN и SIGN UP */
.wp-block-buttons .wp-block-button:not(.plover-hide-on-dark):not(.plover-hide-on-light) .wp-block-button__link.wp-element-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: 1px solid #d1a22b !important;
  background: linear-gradient(180deg, #f6d77a 0%, #d1a22b 100%) !important;
  color: #1b1b1b !important;
  border-radius: 6px;
  padding: 6px 16px !important;
  min-width: 90px;
  box-shadow: 0 0 6px rgba(209, 162, 43, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover эффект — мягкое золото */
.wp-block-buttons .wp-block-button:not(.plover-hide-on-dark):not(.plover-hide-on-light) .wp-block-button__link.wp-element-button:hover {
  background: linear-gradient(180deg, #ffec9e 0%, #e1b94a 100%) !important;
  color: #000 !important;
  box-shadow: 0 0 12px rgba(241, 204, 74, 0.6);
  transform: translateY(-1px);
}

/* Нажатие */
.wp-block-buttons .wp-block-button:not(.plover-hide-on-dark):not(.plover-hide-on-light) .wp-block-button__link.wp-element-button:active {
  transform: scale(0.97);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

header.wp-block-template-part__header,
.site-header {
  background: linear-gradient(180deg, #2a2008 0%, #1b1506 100%);
  border-bottom: 1px solid #d1a22b;
  box-shadow: 0 2px 10px rgba(209,162,43,0.3);
  position: relative;
  z-index: 100;
}

/* Логотип */
.site-logo img {
  max-height: 80px;
  filter: drop-shadow(0 0 6px rgba(255,215,128,0.4));
  transition: all 0.3s ease;
}
.site-logo img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(255,215,128,0.7));
}

/* Меню */
.site-navigation a,
.wp-block-navigation-item__content {
  color: #f7d674 !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color 0.25s ease;
}
.site-navigation a:hover,
.wp-block-navigation-item__content:hover {
  color: #ffffff !important;
  text-shadow: 0 0 6px rgba(255,255,255,0.7);
}
/* === HIGH BEAM RADIO - TITLE SECTION === */
.vc_custom_heading.vc_do_custom_heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
}


/* === Responsive === */
@media (min-width: 1400px) {
  .wpb-content-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .wpb-content-wrapper {
    padding: 20px 15px;
  }
}
