/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

:root {
  --site-font-family: "Roboto", sans-serif;
  --site-primary: #004a99;
  --site-primary-dark: #002b5c;
  --site-accent: #78cfff;
  --site-text: #1a1a1a;
  --site-text-dark-hero: #122033;
  --site-muted: #5b6b7c;
  --site-line: #d9e1e8;
  --site-bg: #ffffff;
  --site-text-light-on-dark: rgba(255, 255, 255, 0.82);
  --site-text-white-on-dark: rgba(255, 255, 255, 0.96);
}

body,
body button,
body input,
body select,
body textarea,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--site-font-family);
}

/* BASE */
.hero-cinematic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 0 30px;

  border-radius: 999px;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: all 0.3s ease;
}

/* PRIMARY (главная кнопка) */
.hero-cinematic-btn-primary {
  background: linear-gradient(135deg, #0a4f96, #002b5c);
  color: #ffffff;

  box-shadow:
    0 12px 30px rgba(0, 43, 92, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-cinematic-btn-primary:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

/* SECONDARY (светлая, но не плоская) */
.hero-cinematic-btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: #002b5c;

  border: 1px solid rgba(255, 255, 255, 0.5);

  box-shadow:
    0 8px 20px rgba(0, 40, 80, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-cinematic-btn-secondary:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.95);

  box-shadow:
    0 12px 28px rgba(0, 40, 80, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-cinematic-btn-route {
  background: linear-gradient(135deg, #3a7fc4, #1e5fa8);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 10px 24px rgba(0, 40, 80, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cinematic-btn-route:hover {
  background: linear-gradient(135deg, #4a90d6, #2a6fc0);
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 14px 32px rgba(0, 40, 80, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.attr-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.attr-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pool-accent);
  box-shadow: 0 0 14px rgba(120, 207, 255, 0.9);
}

@media (max-width: 768px) {
  .attr-kicker {
    margin-top: 20px;
  }
}
