:root {
  --black: #050505;
  --red: #bc0000;
  --white: #ffffff;
  --gray: #1a1a1a;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Teko", sans-serif;
  letter-spacing: 1px;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 5%;
  border-bottom: 3px solid var(--red);
  background: var(--black);
}

nav a {
  font-family: "Anton", sans-serif; /* Потужний, жирний шрифт */
  font-size: 28px;
  color: white;
  text-decoration: none;
  margin-left: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic; /* Додає динаміки, ніби шрифт "біжить" */
  transition: 0.3s ease;
}

nav a:hover {
  color: #bc0000; /* Твій фірмовий червоний */
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Для логотипу SKB BAZA теж краще використати Anton */
.logo {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
}
.hero-boxing {
  height: 80vh;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent),
    url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?q=80&w=1920")
      no-repeat center/cover;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.hero-text h1 {
  font-size: 6rem;
  line-height: 0.9;
  margin: 0;
  font-family: "Staatliches";
}
.hero-text h1 span {
  color: var(--red);
}

.btn-red {
  background: var(--red);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.btn-red:hover {
  transform: skewX(-10deg);
  box-shadow: -5px 5px 0 white;
}

.pricing-section {
  padding: 80px 5%;
  background: #0a0a0a;
  text-align: center;
}

.section-title {
  font-family: "Staatliches", cursive;
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 50px;
  letter-spacing: 3px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.price-card {
  background: var(--gray);
  padding: 40px;
  width: 300px;
  border: 1px solid #333;
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
}

.price-card.featured {
  border: 2px solid var(--red);
  background: #111;
}

.hot-label {
  position: absolute;
  top: -15px;
  background: var(--red);
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
}

.amount {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--white);
  margin: 20px 0;
}

.amount span {
  font-size: 1.2rem;
  color: var(--red);
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  color: #bbb;
  text-align: center;
}

.features li {
  margin-bottom: 10px;
  border-bottom: 1px solid #222;
  padding-bottom: 5px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: white;
  padding: 12px 30px;
  font-family: "Teko";
  font-size: 1.5rem;
  cursor: pointer;
  width: 100%;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* Таблиця */
.schedule-table {
  width: 90%;
  margin: 50px auto;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th,
.schedule-table td {
  padding: 20px;
  border-bottom: 1px solid #333;
  font-size: 24px;
}

.schedule-table th {
  color: var(--red);
  text-transform: uppercase;
}

/* Темні фони для карток абонементів */
.dark-bg-1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=400")
      center/cover;
}

.dark-bg-2 {
  background:
    linear-gradient(rgba(188, 0, 0, 0.2), rgba(0, 0, 0, 0.9)),
    url("https://images.unsplash.com/photo-1594381898411-846e7d193883?q=80&w=400")
      center/cover;
}

.price-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  border-radius: 0; /* Боксерська естетика - гострі кути */
  min-height: 450px;
  display: flex;
  align-items: center;
}

.card-content {
  z-index: 2;
  padding: 30px;
  width: 100%;
}

/* Ефект наведення для зон */
.zones-wrapper {
  display: flex;
  gap: 10px;
  padding: 0 5%;
}

.zone-item {
  flex: 1;
  height: 400px;
  position: relative;
  transition: flex 0.6s ease;
  cursor: pointer;
  overflow: hidden;
}

.zone-item:hover {
  flex: 3;
}

.zone-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, black);
  transform: translateY(50px);
  transition: 0.4s;
}

.zone-item:hover .zone-overlay {
  transform: translateY(0);
}

/* WOD секція */
.wod-section {
  padding: 100px 5%;
  background: #000;
  text-align: center;
}

.wod-box {
  border: 2px dashed var(--red);
  padding: 50px;
  display: inline-block;
}
