/* pages.css - stiluri specifice fiecărei pagini (extrase din <style>) */

/* ===== index.html ===== */
/* Layout două coloane pe desktop, două rânduri pe telefon */
    .index-columns {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }

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

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

    /* Card programare ședință */
    .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;
    }

    .btn-whatsapp-book {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 1.3rem;
      border-radius: 999px;
      border: none;
      background: #25d366;
      color: #050608;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 14px rgba(37, 211, 102, 0.8);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

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

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

    .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;
      }
    }

    /* Newsletter WhatsApp în footer */
    .whatsapp-newsletter {
      background: #f6fdf8;
      border-radius: 16px;
      padding: 1.4rem 1.2rem;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

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

    .wh-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.3rem;
    }

    .wh-title {
      font-size: 1.05rem;
      font-weight: 700;
    }

    .wh-subtitle {
      font-size: 0.86rem;
      opacity: 0.9;
      margin-top: 0.15rem;
    }

    .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;
    }

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

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

    .wh-submit-btn {
      margin-top: 0.3rem;
      width: 100%;
      border: none;
      border-radius: 999px;
      background: #25d366;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.6rem 1rem;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0.03em;
    }

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

    .wh-stats {
      font-size: 0.82rem;
      margin-bottom: 0.4rem;
    }

    .wh-stats span {
      margin-right: 0.3rem;
    }

    .wh-privacy {
      font-size: 0.72rem;
      opacity: 0.7;
    }

/* ===== sectii-cs-sokol.html ===== */
.sections-page {
      padding: 3.5rem 0;
    }

    .sections-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .section-card {
      border-radius: 18px;
      background: rgba(0,0,0,0.82);
      padding: 1.3rem;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      font-size: 0.9rem;
    }

    .section-card-full {
      grid-column: 1 / -1;
    }

    .section-image {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.14);
      height: 220px;
      background: #000;
      margin-bottom: 0.6rem;
    }

    .section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .section-name {
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .section-link {
      font-size: 0.85rem;
      opacity: 0.9;
    }

    @media (max-width: 900px) {
      .sections-grid {
        grid-template-columns: 1fr;
      }
      .section-card-full {
        grid-column: auto;
      }
    }

/* ===== sportivi.html ===== */
.athletes-section {
      padding: 3.5rem 0;
    }

    .athletes-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.7rem;
      margin-top: 2rem;
      align-items: start;
    }

    .athletes-card {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.5rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .athletes-card h2 {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
      margin-bottom: 0.3rem;
    }

    .athletes-card ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .athletes-card li {
      margin-bottom: 0.3rem;
    }

    .athletes-image {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      background: #000;
      max-height: 360px;
    }

    .athletes-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .whatsapp-box {
      margin-top: 1rem;
      padding: 0.9rem 1rem;
      border-radius: 14px;
      border: 1px dashed rgba(255,255,255,0.35);
      background: radial-gradient(circle at top, rgba(206,17,38,0.24), rgba(0,0,0,0.9));
      font-size: 0.88rem;
    }

    .whatsapp-box a {
      color: var(--yellow-roman);
      text-decoration: underline;
      word-break: break-all;
    }

    @media (max-width: 900px) {
      .athletes-layout {
        grid-template-columns: 1fr;
      }
      .athletes-image {
        order: -1;
      }
    }

/* ===== voluntari.html ===== */
.volunteers-section {
      padding: 3.5rem 0;
    }

    .volunteers-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .volunteer-card {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.5rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .volunteer-card h2 {
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .volunteer-card h3 {
      font-size: 0.95rem;
      margin-top: 0.4rem;
      margin-bottom: 0.15rem;
    }

    .volunteer-card ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .volunteer-card li {
      margin-bottom: 0.3rem;
    }

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

/* ===== sponsorizari-tir-sportiv.html ===== */
.sponsorship-section {
      padding: 3.5rem 0;
    }

    .sponsorship-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.7rem;
      margin-top: 2rem;
    }

    .sponsorship-card {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.6rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .sponsorship-card h2 {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .sponsorship-card p {
      line-height: 1.55;
    }

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

/* ===== cursuri.html ===== */
.courses-section {
      padding: 3.5rem 0;
    }

    .courses-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
      gap: 1.7rem;
      margin-top: 2rem;
      align-items: stretch;
    }

    .course-image-wrapper {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      background: #000;
    }

    .course-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .course-content {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.6rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .course-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      opacity: 0.8;
    }

    .course-title {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .course-content h2 {
      font-size: 1.05rem;
      margin-top: 0.4rem;
      margin-bottom: 0.2rem;
    }

    .course-content ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .course-content li {
      margin-bottom: 0.3rem;
    }

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

/* ===== evenimente.html ===== */
.events-section {
      padding: 3.5rem 0;
    }

    .event-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
      gap: 1.7rem;
      margin-top: 2.2rem;
      align-items: stretch;
    }

    .event-image-wrapper {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      background: #000;
    }

    .event-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .event-card {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.6rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .event-tag {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      opacity: 0.8;
    }

    .event-title {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .event-card h3 {
      font-size: 0.98rem;
      margin-top: 0.4rem;
      margin-bottom: 0.2rem;
    }

    .event-card ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .event-card li {
      margin-bottom: 0.3rem;
    }

    .event-divider {
      margin: 2.2rem 0 0.2rem 0;
      border-top: 1px solid rgba(255,255,255,0.22);
      opacity: 0.7;
    }

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

/* ===== galerie-foto.html ===== */
.gallery-section {
  padding: 3.5rem 0;
}

.gallery-slider {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(8,10,14,0.92));
  box-shadow: 0 24px 46px rgba(0,0,0,0.65);
}

.gallery-slider-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.9rem;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 22px;
  min-width: 0;
}

.gallery-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.14);
}

.gallery-slide .gallery-link {
  display: block;
  text-decoration: none;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.gallery-slide-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.82));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.gallery-slide-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  background: rgba(206, 17, 38, 0.9);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-slide-caption h2 {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.gallery-slide-caption p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.84);
}

.gallery-nav {
  width: 52px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.gallery-slider-footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-counter {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}

.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dot.is-active {
  background: var(--accent-red);
  transform: scale(1.08);
}

.gallery-thumbs {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-thumb-btn {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.72;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb-btn:hover,
.gallery-thumb-btn.is-active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(206,17,38,0.88);
}

.gallery-thumb-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-note {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  opacity: 0.9;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background: rgba(0,0,0,0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(94vw, 1280px);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gallery-slider {
    padding: 0.8rem;
    border-radius: 20px;
  }

  .gallery-slider-main {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.58);
  }

  .gallery-slider-main {
    position: relative;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-slide-caption {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.85rem 0.9rem;
  }

  .gallery-slide-caption h2 {
    font-size: 1rem;
  }

  .gallery-slide-caption p {
    font-size: 0.84rem;
  }

  .gallery-slider-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-dots {
    justify-content: flex-start;
  }

  .gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 0.55rem;
    padding-bottom: 0.2rem;
    scroll-snap-type: x proximity;
  }

  .gallery-thumb-btn {
    flex: 0 0 88px;
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .gallery-section {
    padding: 2.7rem 0;
  }

  .gallery-img {
    aspect-ratio: 4 / 5;
  }

  .gallery-slide-caption {
    padding: 0.75rem 0.8rem;
  }

  .gallery-slide-tag {
    font-size: 0.64rem;
    margin-bottom: 0.45rem;
  }

  .gallery-counter {
    font-size: 0.84rem;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
  }

  .lightbox {
    padding: 1rem;
  }
}

/* ===== parteneri-cs-sokol.html ===== */
.partners-section {
      padding: 3.5rem 0;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.7rem;
      margin-top: 2rem;
    }

    .partner-card {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.5rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .partner-card-full {
      grid-column: 1 / -1;
    }

    .partner-name {
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .partner-role {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      opacity: 0.8;
    }

    .partner-card ul {
      list-style: disc;
      padding-left: 1.2rem;
    }

    .partner-card li {
      margin-bottom: 0.3rem;
    }

    .partner-note {
      margin-top: 1.6rem;
      font-size: 0.88rem;
      opacity: 0.9;
    }

    @media (max-width: 920px) {
      .partners-grid {
        grid-template-columns: 1fr;
      }
      .partner-card-full {
        grid-column: auto;
      }
    }

/* ===== 404.html ===== */
.notfound-section {
      padding: 4rem 0;
      text-align: center;
    }
    .notfound-code {
      font-size: 5rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      margin-bottom: 0.5rem;
      color: var(--accent-red);
    }
    .notfound-text {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
    .notfound-sub {
      opacity: 0.8;
      margin-bottom: 2rem;
    }
    .notfound-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn-ghost {
      border-radius: 999px;
      padding: 0.6rem 1.6rem;
      border: 1px solid rgba(255,255,255,0.6);
      background: transparent;
      color: #fff;
      font-size: 0.9rem;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease;
    }
    .btn-ghost:hover {
      background: #fff;
      color: #000;
    }

/* ---------------------------------------------------------
   Butoane moderne (Evenimente / Cursuri) – mobile-first
--------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:14px 18px;
  font-weight:800;
  font-size:1rem;
  letter-spacing:.02em;
  line-height:1;
  min-height:50px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(220,0,0,.55);
  color:#fff;
}
.btn-primary:hover{
  background:rgba(220,0,0,.18);
  border-color:rgba(220,0,0,.9);
}

.btn-secondary{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.22);
}
.btn-secondary:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.3);
}

.event-cta, .course-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
@media (max-width:640px){
  .event-cta .btn, .course-cta .btn{ width:100%; padding:14px 16px; font-size:1rem; }
}
}

/* ===== about.html ===== */
.about-section{padding:3.5rem 0}
    .about-grid{display:grid;grid-template-columns:minmax(0,1.4fr)minmax(0,1fr);gap:1.7rem;margin-top:2rem;align-items:start}
    .about-card{background:rgba(0,0,0,.82);border-radius:18px;border:1px solid rgba(255,255,255,.2);box-shadow:0 20px 40px rgba(0,0,0,.9);padding:1.5rem;font-size:.9rem;display:flex;flex-direction:column;gap:.9rem}
    .about-card h2{font-size:1.05rem;margin-bottom:.2rem;text-transform:uppercase;letter-spacing:.08em;color:var(--accent-red)}
    .about-card ul{padding-left:1.2rem}
    .about-card li{margin-bottom:.3rem}
    .about-photo{border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.18);box-shadow:0 20px 40px rgba(0,0,0,.9);background:#000}
    .about-photo img{width:100%;height:100%;object-fit:cover;display:block}
    @media(max-width:900px){.about-grid{grid-template-columns:1fr}}

/* ===== arme.html ===== */
.weapons-section {
      padding: 3.5rem 0;
    }

    .weapons-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
      gap: 1.6rem;
      margin-top: 2rem;
      align-items: center;
    }

    .weapon-image-wrapper {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      background: #000;
    }

    .weapon-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .weapon-card {
      background: rgba(0,0,0,0.82);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
      box-shadow: 0 20px 40px rgba(0,0,0,0.9);
      padding: 1.5rem;
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .weapon-name {
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent-red);
    }

    .weapon-meta {
      font-size: 0.8rem;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .weapon-divider {
      margin: 2.1rem 0 0.2rem 0;
      border-top: 1px solid rgba(255,255,255,0.22);
      opacity: 0.7;
    }

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

/* ===== contact.html ===== */
.contact-section{padding:3.5rem 0}
    .contact-grid{display:grid;grid-template-columns:minmax(0,1.1fr)minmax(0,1.4fr);gap:1.7rem;margin-top:2rem}
    .contact-card{background:rgba(0,0,0,.82);border-radius:18px;border:1px solid rgba(255,255,255,.2);box-shadow:0 20px 40px rgba(0,0,0,.9);padding:1.5rem;font-size:.9rem;display:flex;flex-direction:column;gap:.9rem}
    .contact-card h2{font-size:1.05rem;margin-bottom:.2rem;text-transform:uppercase;letter-spacing:.08em;color:var(--accent-red)}
    .contact-card ul{list-style:none;padding-left:0}
    .contact-card li{margin-bottom:.4rem}
    .contact-card span{display:inline-block;width:90px;opacity:.8}
    .contact-link{color:var(--yellow-roman);text-decoration:underline;word-break:break-all}
    .map-embed{border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.18);box-shadow:0 20px 40px rgba(0,0,0,.9);min-height:300px;background:#000}
    .map-embed iframe{width:100%;height:100%;border:0}
    @media(max-width:900px){.contact-grid{grid-template-columns:1fr}}

/* ===== cookie-policy.html ===== */
.legal-section{padding:3.5rem 0;font-size:.9rem}
    .legal-section h1{margin-bottom:1.2rem}
    .legal-section h2{margin-top:1.5rem;margin-bottom:.5rem;font-size:1.05rem}
    .legal-section p{margin-bottom:.6rem;line-height:1.6}
    .legal-section ul{margin-bottom:.6rem;padding-left:1.2rem}
    .legal-section li{margin-bottom:.3rem}

/* ===== politica-confidentialitate.html ===== */
.legal-section{padding:3.5rem 0;font-size:.9rem}
    .legal-section h1{margin-bottom:1.2rem}
    .legal-section h2{margin-top:1.5rem;margin-bottom:.5rem;font-size:1.05rem}
    .legal-section p{margin-bottom:.6rem;line-height:1.6}
    .legal-section ul{margin-bottom:.6rem;padding-left:1.2rem}
    .legal-section li{margin-bottom:.3rem}

/* ===== termeni-conditii.html ===== */
.legal-section{padding:3.5rem 0;font-size:.9rem}
    .legal-section h1{margin-bottom:1.2rem}
    .legal-section h2{margin-top:1.5rem;margin-bottom:.5rem;font-size:1.05rem}
    .legal-section p{margin-bottom:.6rem;line-height:1.6}
    .legal-section ul{margin-bottom:.6rem;padding-left:1.2rem}
    .legal-section li{margin-bottom:.3rem}



/* ============================================================
   LIGHTBOX (Galerie) – mobile-first
   ============================================================ */
.lightbox{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 16px;
  background: rgba(0,0,0,.88);
  z-index: 9999;
}
.lightbox.open{ display:flex; }
.lightbox-img{
  max-width: 100%;
  max-height: 84vh;
  width:auto;
  height:auto;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.75);
}
.lightbox-close{
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 18px;
  font-weight: 900;
}


/* ===== override final: butoane unificate responsive ===== */
.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;
  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;
}

.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;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.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);
}

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

@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;
  }
}


/* ===== 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;
  }
}


/* ===== formular-inscriere-competitie-tir-sportiv.html ===== */
.competition-registration-page {
  padding-bottom: 1rem;
}

.competition-registration-hero {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.registration-header-center {
  max-width: 900px;
  margin: 0 auto 1.75rem;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.registration-info-card,
.registration-form-card {
  background: rgba(0, 0, 0, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.registration-info-card {
  padding: 1.4rem 1.2rem;
  position: sticky;
  top: 1rem;
}

.registration-info-card h2 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.registration-info-card p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.registration-checklist-title {
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.registration-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.registration-checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.registration-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-roman);
  font-weight: 700;
}

.registration-mini-card {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.35rem;
}

.registration-form-card {
  padding: 1.4rem 1.2rem;
}

.registration-form-title {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-red);
  margin-bottom: 0.3rem;
}

.registration-form-required {
  font-size: 0.84rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.competition-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label,
.option-group legend {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.form-field label span,
.option-group legend span {
  color: var(--accent-red);
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 9, 16, 0.95);
  color: #fff;
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
}

.form-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.option-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1rem;
  margin: 0;
}

.option-note {
  margin: 0.1rem 0 0.75rem;
  font-size: 0.86rem;
  opacity: 0.82;
}

.option-list {
  display: grid;
  gap: 0.7rem;
}

.option-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.option-pill input {
  margin-top: 0.15rem;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.option-pill span {
  line-height: 1.45;
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.registration-submit,
.registration-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 1.2rem;
}

.registration-secondary {
  text-decoration: none;
}

.registration-disclaimer {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.8;
}

.registration-help-section {
  padding-bottom: 3rem;
}

@media (max-width: 920px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-info-card {
    position: static;
  }
}

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

  .registration-form-card,
  .registration-info-card {
    padding: 1.1rem 0.95rem;
    border-radius: 20px;
  }

  .form-field input,
  .form-field select {
    min-height: 50px;
    font-size: 16px;
  }

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

  .registration-submit,
  .registration-secondary {
    width: 100%;
  }
}
