/* =========================
   BUTTONS
========================= */

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* PRIMARY */
.btn-primary {
  background: #b11226;
  color: white;
  box-shadow: 0 0 25px rgba(177,18,38,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(177,18,38,0.7);
}

/* SECONDARY */
.btn-secondary {
  background: rgba(177,18,38,0.08);
  border: 1px solid rgba(177,18,38,0.4);
  color: white;
}

.btn-secondary:hover {
  background: rgba(177,18,38,0.18);
  border-color: rgba(177,18,38,0.7);
  transform: translateY(-2px);
}

.hero-job {
  margin-top: 22px;
}

.hero-job {
  margin-top: 22px;
}


/* =========================
   TERTIARY BUTTON (PRÁCE)
========================= */
/* =========================
   TERTIARY BUTTON (PRÁCE)
========================= */

.btn-tertiary {
  background: rgba(177,18,38,0.08);
  border: 1px solid rgba(177,18,38,0.35);
  color: white;
  position: relative;
  overflow: hidden;
}

/* jemný glow při hoveru */
.btn-tertiary:hover {
  background: rgba(177,18,38,0.18);
  border-color: rgba(177,18,38,0.8);
  box-shadow:
    0 0 25px rgba(177,18,38,0.35),
    0 8px 25px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
/* =========================
   CARDS
========================= */
/* =========================
   INFO BOXES (HERO CARDS)
========================= */

.info {
  padding: 18px 0 40px;
}

.info-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 820px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

.info-card {
  background: rgba(14, 15, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 22px;

  /* jemný “glass” efekt */
  backdrop-filter: blur(10px);

  /* červený nádech místo fialového */
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(177, 18, 38, 0.08);

  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.info-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.info-card strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 18, 38, 0.45);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(177, 18, 38, 0.12);
}

/* =========================
   HERO
========================= */

.hero-text h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
}

.hero-text .accent {
  color: #b11226;
}

.hero-subtitle {
  max-width: 480px;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(177,18,38,0.2);
  color: #ff4d5a;
}


/* =========================
   HERO JOB LINK
========================= */

.hero-job {
  margin-top: 22px;
}




/* =========================
   GALERIE
========================= */

.gallery-swipe {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.gallery-swipe::-webkit-scrollbar {
  height: 6px;
}

.gallery-swipe::-webkit-scrollbar-thumb {
  background: rgba(177,18,38,0.3);
  border-radius: 999px;
}

.gallery-swipe-item {
  min-width: 240px;
  height: 160px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  flex-shrink: 0;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-swipe-item:hover {
  transform: scale(1.04);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    0 0 40px rgba(177,18,38,0.4);
}

.gallery-cta {
  margin-top: 24px;
}


/* =========================
   ATMOSFÉRA
========================= */

.atmosfera {
  height: 340px;
  border-radius: 16px;
  margin-top: 24px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.25)),
    url("../atmosfera.webp");
  background-size: cover;
  background-position: center;
}


/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 0 120px rgba(177,18,38,0.5);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


/* =========================
   LIGHTBOX ARROWS
========================= */

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-btn:hover {
  background: rgba(177,18,38,0.8);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-btn.prev { left: 24px; }
.lightbox-btn.next { right: 24px; }

@media (max-width: 768px) {
  .lightbox-btn {
    font-size: 36px;
    width: 44px;
    height: 44px;
  }
}
/* =========================
   EXPERIENCE SECTION
========================= */

.experience-grid {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}

@media (min-width: 900px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.experience-card {
  background: rgba(15,15,20,0.9);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(177,18,38,0.2);
  transition: all 0.3s ease;
}

.experience-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.experience-card p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.experience-card:hover {
  border-color: rgba(177,18,38,0.6);
  box-shadow: 0 0 40px rgba(177,18,38,0.15);
  transform: translateY(-6px);
}


/* =========================
   SOCIAL ICONS
========================= */

.socials {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(177,18,38,0.1);
  border: 1px solid rgba(177,18,38,0.4);

  transition: all 0.3s ease;
}

.socials img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.socials a:hover {
  background: rgba(177,18,38,0.2);
  border-color: rgba(177,18,38,0.8);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(177,18,38,0.3);
}