/* ============================================
   REKORD SZKOŁA PŁYWANIA - MAIN STYLESHEET
   Design: Red / White Sports Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ---- RESET & VARIABLES ---- */
:root {
  --red: #d40000;
  --red-dark: #a80000;
  --red-light: #ff2222;
  --black: #111111;
  --dark: #1e1e2e;
  --dark-2: #2a2a3a;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-light: #f5f5f7;
  --gray: #777777;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-red: 0 8px 32px rgba(212,0,0,0.25);
  --shadow-soft: 0 4px 24px rgba(212,0,0,0.12);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --border-radius: 6px;
  --border-radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: #aaa;
}

.section-gray {
  background: var(--gray-light);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(212,0,0,0.08);
}

#navbar.scrolled {
  background: rgba(255,255,255,1);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(212,0,0,0.14);
}

#navbar:not(.scrolled) {
  background: rgba(255,255,255,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 62px;
  width: auto;
  border-radius: 14px;
  filter: drop-shadow(0 2px 8px rgba(212,0,0,0.20));
  transition: transform 0.35s ease, filter 0.35s ease;
  object-fit: contain;
}

.nav-logo:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 16px rgba(212,0,0,0.40));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444;
  padding: 8px 14px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--border-radius);
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff8f8 40%, #fff0f0 70%, #ffe4e4 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d40000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(212,0,0,0.06), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-text {
  animation: fadeInLeft 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,0,0,0.08);
  border: 1.5px solid rgba(212,0,0,0.3);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-title .red {
  color: var(--red);
  display: block;
}

.hero-subtitle-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #666;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---- Hero Logo Display (replaces Dominika photo) ---- */
.hero-logo-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
  min-height: 520px;
}

.hero-logo-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212,0,0,0.18);
  animation: logoRipple 3.6s ease-out infinite;
}

.logo-ring.r1 { width: 320px; height: 320px; animation-delay: 0s; }
.logo-ring.r2 { width: 420px; height: 420px; animation-delay: 1.0s; }
.logo-ring.r3 { width: 520px; height: 520px; animation-delay: 2.0s; }

.hero-logo-frame {
  position: relative;
  z-index: 2;
  animation: floatLogo 4s ease-in-out infinite;
}

.hero-logo-big {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 28px;
  box-shadow:
    0 0 0 8px rgba(212,0,0,0.07),
    0 0 0 18px rgba(212,0,0,0.04),
    0 24px 60px rgba(212,0,0,0.18),
    0 8px 20px rgba(0,0,0,0.08);
  background: #fff;
  display: block;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-logo-big:hover {
  box-shadow:
    0 0 0 10px rgba(212,0,0,0.12),
    0 0 0 22px rgba(212,0,0,0.06),
    0 32px 80px rgba(212,0,0,0.28),
    0 12px 30px rgba(0,0,0,0.12);
}

.hero-logo-tagline {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  animation: fadeIn 1.4s ease forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--red));
  margin-top: 4px;
}

/* ============================================
   ABOUT STRIP
   ============================================ */
.about-strip {
  background: var(--red);
  padding: 28px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 60px;
  animation: scrollStrip 20s linear infinite;
  width: max-content;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.strip-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 500px;
}

.about-img-main {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-red);
  z-index: 2;
}

.about-badge-num {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
}

.about-feature-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(212,0,0,0.14);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.fade-up:nth-child(1) { transition-delay: 0.05s; }
.service-card.fade-up:nth-child(2) { transition-delay: 0.12s; }
.service-card.fade-up:nth-child(3) { transition-delay: 0.19s; }
.service-card.fade-up:nth-child(4) { transition-delay: 0.26s; }
.service-card.fade-up:nth-child(5) { transition-delay: 0.33s; }
.service-card.fade-up:nth-child(6) { transition-delay: 0.40s; }

.service-card-icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 30px 28px 20px;
}

.service-card-body {
  padding: 0 28px 28px;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card-link:hover {
  gap: 10px;
}

/* ============================================
   TRAINER SPOTLIGHT
   ============================================ */
.trainer-spotlight {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.trainer-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d40000' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.trainer-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trainer-spotlight-img-wrap {
  position: relative;
}

.trainer-spotlight-img {
  width: 100%;
  max-width: 460px;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
}

.trainer-quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 220px;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  box-shadow: var(--shadow-red);
}

.trainer-quote::before {
  content: '"';
  font-size: 2.5rem;
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.5rem;
  opacity: 0.5;
  margin-right: 4px;
}

.trainer-spotlight-info .section-label {
  color: var(--red);
}

.trainer-spotlight-info .section-title {
  color: var(--black);
}

.trainer-name-script {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  font-style: italic;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 8px;
}

.trainer-title-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.trainer-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.trainer-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.trainer-skill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 0.88rem;
}

.trainer-skill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   BENEFITS / WHY US
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212,0,0,0.12);
  border-color: rgba(212,0,0,0.1);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-card.fade-up:nth-child(1) { transition-delay: 0.05s; }
.benefit-card.fade-up:nth-child(2) { transition-delay: 0.13s; }
.benefit-card.fade-up:nth-child(3) { transition-delay: 0.21s; }
.benefit-card.fade-up:nth-child(4) { transition-delay: 0.29s; }

.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(212,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--red);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.benefit-text {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(0,0,0,0.1);
  transform: skewX(-15deg);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 30%;
  height: 200%;
  background: rgba(0,0,0,0.05);
  transform: skewX(-15deg);
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip {
  background: var(--white);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid #eee;
  padding: 40px 0;
}

.contact-strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--black);
}

.contact-strip-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-strip-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-strip-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0a0a0a;
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 64px;
  margin-bottom: 16px;
  border-radius: 12px;
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(212,0,0,0.25));
  object-fit: contain;
}

.footer-desc {
  color: #777;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #777;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--red);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #555;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #555;
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: var(--red);
}

/* ============================================
   PAGE HEADER (internal pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 50%, #ffe8e8 100%);
  border-bottom: 4px solid var(--red);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d40000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-header-breadcrumb a {
  color: var(--red);
}

.page-header-breadcrumb span {
  color: #bbb;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--black);
  position: relative;
  z-index: 1;
}

.page-header h1 span {
  color: var(--red);
}

.page-header p {
  color: #666;
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ============================================
   OFERTA PAGE
   ============================================ */
.oferta-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.oferta-tab {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: var(--gray);
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.oferta-tab.active,
.oferta-tab:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.oferta-content {
  display: none;
}

.oferta-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.oferta-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.oferta-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

.oferta-price-box {
  background: var(--dark);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
}

.oferta-price-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--red);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
  color: #ccc;
}

.price-row:last-child {
  border-bottom: none;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--red);
}

.oferta-list {
  margin: 20px 0;
}

.oferta-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
  color: var(--black);
}

.oferta-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   TRENINGI PAGE
   ============================================ */
.training-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.training-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 80px 1fr;
  transition: var(--transition);
}

.training-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.training-card-num {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

.training-card-body {
  padding: 24px;
}

.training-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.training-card-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.training-levels {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.level-tag {
  background: rgba(212,0,0,0.1);
  color: var(--red);
  font-size: 0.72rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ============================================
   TRENERZY PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.team-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-card-body {
  padding: 24px;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.team-card-role {
  color: var(--red);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-card-text {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.6;
}

.featured-trainer {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  background: var(--dark);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 60px;
}

.featured-trainer-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.featured-trainer-body {
  padding: 50px 50px 50px 0;
  color: var(--white);
}

/* ============================================
   GALERIA PAGE
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: var(--white);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 8/3;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   KONTAKT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 44px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--red);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: 4px;
  margin-top: 16px;
  display: none;
  font-size: 0.9rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  padding: 28px;
  border-radius: 8px;
  display: flex;
  gap: 18px;
}

.contact-info-card-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 6px;
}

.contact-info-card-value {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-card-sub {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

.map-wrap {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollStrip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

@keyframes logoRipple {
  0% { opacity: 0.7; transform: scale(0.75); }
  100% { opacity: 0; transform: scale(1.15); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---- Oferta Logo Display ---- */
.oferta-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
  border-radius: var(--border-radius-lg);
  border: 2px solid rgba(212,0,0,0.1);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.oferta-logo-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d40000' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.oferta-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow:
    0 0 0 6px rgba(212,0,0,0.07),
    0 0 0 14px rgba(212,0,0,0.03),
    0 16px 48px rgba(212,0,0,0.15);
  background: #fff;
  position: relative;
  z-index: 1;
  animation: floatLogo 4s ease-in-out infinite;
}

.oferta-logo-label {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { gap: 40px; }
  .about-grid { gap: 40px; }
  .trainer-spotlight-grid { gap: 40px; }
  .featured-trainer { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 12px 24px;
    color: var(--black);
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-logo-display {
    order: -1;
    min-height: 360px;
  }

  .hero-logo-big {
    width: 220px;
    height: 220px;
  }

  .logo-ring.r1 { width: 260px; height: 260px; }
  .logo-ring.r2 { width: 330px; height: 330px; }
  .logo-ring.r3 { width: 400px; height: 400px; }

  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 300px; }
  .about-features { grid-template-columns: 1fr; }

  .trainer-spotlight-grid { grid-template-columns: 1fr; }
  .trainer-quote { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .training-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .featured-trainer { grid-template-columns: 1fr; }
  .featured-trainer-body { padding: 30px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .oferta-detail { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ============================================
   REKORD SPOTLIGHT SECTION
   ============================================ */
.rekord-spotlight-section {
  background: var(--gray-light);
}

.rekord-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rekord-spotlight-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: unset;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  position: relative;
  z-index: 1;
  animation: rekordFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(212,0,0,0.22));
  transition: filter 0.4s;
  will-change: transform;
}

.rekord-spotlight-img:hover {
  filter: drop-shadow(0 28px 80px rgba(212,0,0,0.38));
}

.rekord-img-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212,0,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: rekordGlow 5s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

@keyframes rekordFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-16px) scale(1.02); }
}

@keyframes rekordGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
