/* ============================================================
   VARIABILE CULORI — IDENTITATEA CS SOKOL
   ============================================================ */

:root {
  --accent-red: rgb(206, 17, 38);       /* roșu vermion */
  --yellow-roman: rgb(252, 209, 22);    /* galben crom */
  --blue-roman: rgb(0, 43, 127);        /* albastru cobalt */

  --text-light: #e9e9e9;
  --text-muted: rgba(255,255,255,0.65);

  --bg-dark: #040507;
  --bg-card: rgba(0,0,0,0.82);
}

/* Font reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   BAZĂ
   ============================================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #000;
  color: var(--text-light);
  min-height: 100vh;
}

/* linkuri */

a {
  color: var(--accent-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* imagini */

img {
  max-width: 100%;
  display: block;
}

/* container */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* fundal general + hero */

.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #161b26 0, #020308 55%, #000 100%);
  opacity: 0.95;
  z-index: -2;
}

.hero-image {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url("img/modul-1.jpg") center/cover no-repeat;
  z-index: -3;
  filter: blur(2px);
  transform: scale(1.03);
}

/* titluri */

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* butoane generice */

.btn,
button {
  font-family: inherit;
}


/* ============================================================
   BUTOANE (mobile-first)
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:14px;
  font-weight:800;
  letter-spacing: .01em;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text-light);
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-primary{
  border-color: rgba(220,0,0,.55);
  background: rgba(255,255,255,.08);
}
.btn-primary:hover{
  background: rgba(220,0,0,.18);
  border-color: rgba(220,0,0,.9);
}
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.28);
}
.btn-outline:hover{
  background: rgba(255,255,255,.08);
}

/* linkuri in interiorul butoanelor */
a.btn{ color: var(--text-light); text-decoration:none; }

/* Accesibilitate: focus vizibil pe mobil */
:focus-visible{
  outline: 3px solid rgba(252,209,22,.65);
  outline-offset: 3px;
}
/* ============================================================
   HEADER + MENIU
   ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.75));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    position: relative;
display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.65rem;
  gap: 1.5rem;
}

/* sigla */

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo-img {
  width: 64px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.club-name {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-roman);
}

.section-name {
  font-size: 0.86rem;
  text-transform: uppercase;
}

/* buton apel */

.header-call-btn {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 18px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-red), #ff4b4b);
  border-radius: 14px;
  border: 1px solid rgba(255, 90, 90, 0.45);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(206,17,38,0.28), 0 0 14px rgba(206,17,38,0.35);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.header-call-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 120, 120, 0.72);
  box-shadow: 0 10px 24px rgba(206,17,38,0.32), 0 0 18px rgba(255,75,75,0.5);
  filter: brightness(1.03);
}

/* meniu navigare */

nav {
  flex: 1;
}

.nav-list {
  display: flex;
  justify-content: flex-start;
  gap: 0.85rem;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-decoration: none;
  padding-block: 0.4rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width 0.18s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #fff;
}


.nav-cta-item {
  margin-left: auto;
}

.nav-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(220,0,0,.55);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-cta-link:hover {
  transform: translateY(-1px);
  background: rgba(220,0,0,.18);
  border-color: rgba(220,0,0,.9);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

/* burger */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.nav-toggle.is-active span {
  background: transparent;
}

.nav-toggle.is-active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ============================================================
   HERO + INDEX — LAYOUT DOUĂ COLOANE
   ============================================================ */

.hero-section {
  padding: 2.6rem 0 2.2rem;
}

.index-columns {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.index-col {
  flex: 1;
  min-width: 0;
}

/* coloane devin randuri pe mobil */

@media (max-width: 768px) {
  .index-columns {
    flex-direction: column;
  }
  .index-col-1 {
    order: 1;
  }
  .index-col-2 {
    order: 2;
  }
}

/* text hero */

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-roman);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 0.98rem;
  opacity: 0.92;
  max-width: 34rem;
  margin-bottom: 1.1rem;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.2rem 0;
  font-size: 0.9rem;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.hero-list li span {
  color: var(--accent-red);
  font-size: 1rem;
  line-height: 1.2;
}

.hero-meta {
  font-size: 0.82rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-lead {
    max-width: none;
  }
}

/* card programare sedinta */

.booking-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.9);
  padding: 1.7rem 1.5rem;
  backdrop-filter: blur(10px);
}

.booking-title {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.booking-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.1rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.booking-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.8;
  margin-bottom: 0.2rem;
  display: inline-block;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 5, 10, 0.9);
  color: #fff;
  font-size: 0.9rem;
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.booking-note {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 0.6rem;
}

.booking-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-start;
}

/* buton WhatsApp (programare & newsletter) */

.btn-whatsapp-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(61, 214, 98, 0.72);
  background: #25d366;
  color: #050608;
  font-weight: 800;
  font-size: 0.96rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.25), 0 0 14px rgba(37, 211, 102, 0.35);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-whatsapp-book:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 214, 98, 0.95);
  box-shadow: 0 10px 24px rgba(0,0,0,.28), 0 0 18px rgba(37, 211, 102, 0.45);
  filter: brightness(1.03);
}

.btn-whatsapp-book span {
  font-size: 1.1rem;
}

/* ============================================================
   SECTIUNI GENERALE, CARDURI, GRID 3 COL
   ============================================================ */

.section-header {
  text-align: left;
  margin-bottom: 1.6rem;
}

.section-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-roman);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  max-width: 36rem;
  opacity: 0.9;
}

.cards-grid-3 {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(3, minmax(0,1fr));
}


.cards-grid-4 {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(4, minmax(0,1fr));
}

@media (max-width: 900px) {
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 26px rgba(0,0,0,0.8);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 0.6rem;
}

.info-card .card-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  margin-top: 2.5rem;
  padding: 2rem 0 1.5rem;
  background: radial-gradient(circle at top, #14171f 0, #020308 65%, #000 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

.footer-grid > div {
  min-width: 0;
}


@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-subtitle {
  margin-top: 0.9rem;
}

.footer-newsletter {
  font-size: 0.9rem;
}

.footer-links-wrapper {
  font-size: 0.85rem;
}

.footer-links-list {
  list-style: none;
  padding-left: 0;
}

.footer-links-list li + li {
  margin-top: 0.25rem;
}

.footer-links-list a {
  color: var(--text-light);
}

.footer-links-list a:hover {
  color: #fff;
}

.footer-contact ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
}

.footer-contact li span {
  display: inline-block;
  min-width: 70px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.7rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   NEWSLETTER WHATSAPP — FOOTER
   ============================================================ */

.whatsapp-newsletter {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #000; /* text negru pur */
}

/* Header newsletter */
.wh-news-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

/* Iconiță WhatsApp newsletter – 100x100 px */
.wh-img-icon img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

/* Titlu și subtitlu */
.wh-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
}

.wh-subtitle {
  font-size: 0.86rem;
  color: #000;
  opacity: 0.8;
  margin-top: 0.15rem;
}

/* Formular */
.wh-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.wh-field label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  color: #000;
}

.wh-field input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  background: #ffffff;
  color: #000;
}

.wh-field input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* Buton – aliniat cu stilul WhatsApp booking */
.wh-submit-btn {
  margin-top: 0.3rem;
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #25d366;
  color: #050608;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  transition: 0.15s ease;
}

.wh-submit-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.95);
}

/* Text GDPR */
.wh-privacy {
  font-size: 0.72rem;
  color: #000;
  opacity: 0.7;
}

/* ============================================================
   MODUL SOCIAL PLUTITOR — ICONITE PATRATE
   ============================================================ */

.social-floating {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  animation: socialFadeSlideIn 0.8s ease-out 0.3s both;
}

.social-float-icon {
  width: 54px;
  height: 54px;
  border-radius: 6px; /* ICONITE PĂTRATE */
  display: block;
  background-color: #050608;
  background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 60%);
  border: 1px solid var(--accent-red);
  box-shadow:
    0 0 10px rgba(206, 17, 38, 0.45),
    0 0 15px rgba(206, 17, 38, 0.35),
    0 6px 16px rgba(0,0,0,0.9);
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 85%; /* ICONIȚA se afișează pătrată */
  transition: 0.18s ease;
}

.social-float-icon:hover {
  transform: translateX(-3px) scale(1.08);
  box-shadow:
    0 0 14px rgba(206, 17, 38, 0.95),
    0 0 32px rgba(206, 17, 38, 0.8),
    0 14px 28px rgba(0,0,0,0.95);
  border-color: #ff4747;
  background-color: #090b10;
}

/* WHATSAPP */
.social-whatsapp {
  background-color: #25d366;
  background-image: url("img/whatsapp.png");
  background-size: 75%;
}

/* ICONITE PNG PATRATE */
.social-facebook {
  background-image: url("img/facebook.png");
}

.social-instagram {
  background-image: url("img/instagram.png");
}

.social-tiktok {
  background-image: url("img/tiktok.png");
}

/* Animatii de aparitie */
@keyframes socialFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes socialIconPop {
  from {
    transform: scale(0.82);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Ordine animatii */
.social-floating .social-float-icon:nth-child(1) { animation: socialIconPop 0.5s ease-out 0.45s both; }
.social-floating .social-float-icon:nth-child(2) { animation: socialIconPop 0.5s ease-out 0.55s both; }
.social-floating .social-float-icon:nth-child(3) { animation: socialIconPop 0.5s ease-out 0.65s both; }
.social-floating .social-float-icon:nth-child(4) { animation: socialIconPop 0.5s ease-out 0.75s both; }

/* Versiune mobil — iconite pătrate mai mici */
@media (max-width: 720px) {
  .social-floating {
    top: auto;
    bottom: 1.2rem;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 0.7rem;
    animation: socialFadeUp 0.7s ease-out 0.2s both;
  }

  .social-float-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
  }
}

@keyframes socialFadeUp {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateX(50%) translateY(0);
  }
}

/* ============================================================
   MEDIA QUERIES GENERALE
   ============================================================ */

@media (max-width: 960px) {
  .header-inner {
    align-items: flex-start;
  }

  .header-row-menu {
    position: relative;
  }

  .header-row-menu nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: rgba(0,0,0,0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.6rem 0;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease, visibility 0.18s ease;
    z-index: 120;
  }

  .header-row-menu nav.open,
  header.menu-open .header-row-menu nav {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    padding-inline: 1.2rem;
  }

  .nav-cta-item {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .nav-link {
    display: inline-block;
    padding-block: 0.55rem;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .logo-img {
    width: 54px;
  }

  .club-name {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .booking-card {
    margin-top: 1rem;
  }
}

/* ============================================================
   HEADER 3 RANDURI – LOGO STÂNGA, TEXT PE 3 LINII
   ============================================================ */

.header-inner.header-3rows {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

/* Logo – în fața celor 3 rânduri, pătrat (înălțime = lățime) */
.logo-block {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 100%;
  aspect-ratio: 1 / 1;
  max-height: 96px;
  border-radius: 8px;
  object-fit: contain;
}

/* Container text 3 rânduri */
.header-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

/* Rând 1 – titlul + secția, aliniate la stânga */
.header-row-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  justify-content: flex-start;
}

.logo-sokol-big {
  font-size: 1.9rem;  /* mult mai mare */
  font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.logo-section-big {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Rând 2 – meniu, aliniat la stânga */
.header-row-menu {
  margin-top: 0.15rem;
}

.header-row-menu nav {
  width: 100%;
}

/* Rând 3 – APELEAZĂ, aliniat la dreapta */
.header-row-call {
  margin-top: 0.2rem;
  display: flex;
  justify-content: flex-end;
}

.header-call-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-red), #ff4b4b);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255,75,75,0.7);
  white-space: nowrap;
}

.header-call-inline:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(255,100,100,0.95);
}

/* Responsive header */
@media (max-width: 960px) {
  .header-inner.header-3rows {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-block {
    margin-bottom: 0.2rem;
  }

  .logo-img {
    max-height: 80px;
  }

  .header-row-call {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .logo-block {
    display: none;
  }

  .logo-img {
    display: none;
    max-height: 68px;
  }

  .logo-sokol-big {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
  }

  .logo-section-big {
    font-size: 0.95rem;
  }

  .header-call-inline {
    width: 100%;
    justify-content: center;
  }
}


body.nav-open,
body.menu-open {
  overflow: hidden;
}


.header-row-call {
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.header-cta-inline {
  margin-left: 0;
}

.booking-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-call-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn-call-book:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.faq-card h2,
.faq-card h3 {
  margin-bottom: 0.8rem;
}

.faq-home-grid .faq-card p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .header-row-call {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    flex-direction: column;
  }
}


/* ============================================================
   SISTEM UNIFICAT DE BUTOANE — CTA responsive pe tot site-ul
   ============================================================ */

.btn,
.nav-cta-link,
.header-call-inline,
.header-call-btn,
.btn-whatsapp-book,
.btn-call-book,
.wh-submit-btn,
.pdf-download-btn,
.pdfbook-btn,
.btn-download,
.btn-ghost,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.btn:hover,
.nav-cta-link:hover,
.header-call-inline:hover,
.header-call-btn:hover,
.btn-whatsapp-book:hover,
.btn-call-book:hover,
.wh-submit-btn:hover,
.pdf-download-btn:hover,
.pdfbook-btn:hover,
.btn-download:hover,
.btn-ghost:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active,
.nav-cta-link:active,
.header-call-inline:active,
.header-call-btn:active,
.btn-whatsapp-book:active,
.btn-call-book:active,
.wh-submit-btn:active,
.pdf-download-btn:active,
.pdfbook-btn:active,
.btn-download:active,
.btn-ghost:active {
  transform: translateY(0);
}

/* variantă outline / dark */
.nav-cta-link,
.btn,
.btn-primary,
.btn-outline,
.btn-call-book,
.pdf-download-btn,
.pdfbook-btn,
.btn-download,
.btn-ghost {
  border: 1px solid rgba(220,0,0,.55);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.nav-cta-link:hover,
.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-call-book:hover,
.pdf-download-btn:hover,
.pdfbook-btn:hover,
.btn-download:hover,
.btn-ghost:hover {
  background: rgba(220,0,0,.18);
  border-color: rgba(220,0,0,.9);
}

/* variantă accent principal */
.header-call-inline,
.header-call-btn,
.btn-whatsapp-book,
.wh-submit-btn {
  border: 1px solid rgba(255, 90, 90, 0.45);
  background: linear-gradient(135deg, var(--accent-red), #ff4b4b);
  color: #fff;
  box-shadow: 0 10px 24px rgba(206,17,38,0.28), 0 0 14px rgba(206,17,38,0.35);
}

.header-call-inline:hover,
.header-call-btn:hover,
.btn-whatsapp-book:hover,
.wh-submit-btn:hover {
  border-color: rgba(255, 120, 120, 0.72);
  box-shadow: 0 10px 24px rgba(206,17,38,0.32), 0 0 18px rgba(255,75,75,0.5);
  filter: brightness(1.03);
}

/* corecții pentru elemente care aveau stil vechi */
.header-call-inline,
.nav-cta-link,
.btn-whatsapp-book,
.btn-call-book,
.wh-submit-btn,
.pdf-download-btn,
.pdfbook-btn,
.btn-download,
.btn-ghost {
  border-radius: 14px !important;
}

.booking-actions,
.course-cta,
.event-cta,
.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.booking-actions > a,
.booking-actions > button,
.course-cta > a,
.course-cta > button,
.event-cta > a,
.event-cta > button,
.pdf-actions > a,
.pdf-actions > button {
  flex: 0 1 auto;
}

/* responsive mobil */
@media (max-width: 768px) {
  .btn,
  .nav-cta-link,
  .header-call-inline,
  .header-call-btn,
  .btn-whatsapp-book,
  .btn-call-book,
  .wh-submit-btn,
  .pdf-download-btn,
  .pdfbook-btn,
  .btn-download,
  .btn-ghost,
  a.btn,
  button.btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    font-size: 0.95rem;
    letter-spacing: .06em;
  }

  .header-actions,
  .booking-actions,
  .course-cta,
  .event-cta,
  .pdf-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-cta-inline,
  .header-call-inline {
    width: 100%;
  }
}


/* ===== MASTER BUTTON SYSTEM: btn-sokol ===== */
.btn-sokol{
  --btn-bg: rgba(255,255,255,.08);
  --btn-border: rgba(220,0,0,.55);
  --btn-color: #fff;
  --btn-shadow: 0 10px 24px rgba(0,0,0,.25);
  --btn-hover-bg: rgba(220,0,0,.18);
  --btn-hover-border: rgba(220,0,0,.9);
  --btn-hover-shadow: 0 12px 26px rgba(0,0,0,.28);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:14px 20px;
  border-radius:14px !important;
  border:1px solid var(--btn-border);
  background:var(--btn-bg);
  color:var(--btn-color);
  font-family:inherit;
  font-size:.96rem;
  font-weight:800;
  line-height:1.15;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  text-align:center;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow:var(--btn-shadow);
}

.btn-sokol:hover{
  text-decoration:none;
  transform:translateY(-1px);
  background:var(--btn-hover-bg);
  border-color:var(--btn-hover-border);
  box-shadow:var(--btn-hover-shadow);
}

.btn-sokol:active{
  transform:translateY(0);
}

.btn-sokol.btn-whatsapp-book,
.btn-sokol.wh-submit-btn,
.btn-sokol.header-call-inline,
.btn-sokol.header-call-btn{
  --btn-bg: linear-gradient(135deg, var(--accent-red), #ff4b4b);
  --btn-border: rgba(255,90,90,.45);
  --btn-shadow: 0 10px 24px rgba(206,17,38,.28), 0 0 14px rgba(206,17,38,.35);
  --btn-hover-bg: linear-gradient(135deg, #e43838, #ff5a5a);
  --btn-hover-border: rgba(255,120,120,.72);
  --btn-hover-shadow: 0 10px 24px rgba(206,17,38,.32), 0 0 18px rgba(255,75,75,.5);
}

.booking-actions{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.booking-actions > .btn-sokol,
.booking-actions > a,
.booking-actions > button{
  width:100%;
  min-width:0;
}

@media (max-width: 768px){
  .btn-sokol{
    min-height:50px;
    padding:14px 16px;
    font-size:.95rem;
    letter-spacing:.06em;
  }

  .booking-actions{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
  }

  .booking-actions .btn-sokol{
    width:100%;
    padding:13px 10px;
    font-size:.84rem;
    letter-spacing:.04em;
    white-space:nowrap;
  }
}

@media (max-width: 420px){
  .booking-actions .btn-sokol{
    min-height:48px;
    padding:12px 8px;
    font-size:.78rem;
    gap:6px;
  }
}
