/* ============================================================
   Patrik Trenér – Custom Styles
   Bootstrap 5 override & extension
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap");

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --pt-orange: #e87c3e;
  --pt-orange-dark: #cf6a2e;
  --pt-orange-light: #fef0e6;
  --pt-dark: #111111;
  --pt-dark-2: #1a1a1a;
  --pt-dark-3: #222222;
  --pt-gray-muted: rgba(255, 255, 255, 0.55);
  --pt-font-display: "Bebas Neue", sans-serif;
  --pt-font-body: "DM Sans", sans-serif;
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--pt-font-body);
  font-size: 16px;
  font-weight: 400;
  background: #f8f8f6;
  color: #1a1a1a;
}

h1,
h2,
h3,
h4 {
  font-family: var(--pt-font-display);
  letter-spacing: 1px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.pt-navbar {
  background: var(--pt-dark);
  padding: 14px 0;
}

.pt-navbar .navbar-brand {
  font-family: var(--pt-font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 3px;
}

.pt-navbar .navbar-brand span {
  color: var(--pt-orange);
}

.pt-navbar .nav-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 6px 14px !important;
  transition: color 0.2s;
}

.pt-navbar .nav-link:hover {
  color: #fff !important;
}

.pt-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.pt-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-pt-primary {
  background: var(--pt-orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--pt-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  transition: background 0.2s;
}

.btn-pt-primary:hover {
  background: var(--pt-orange-dark);
  color: #fff;
}

.btn-pt-hero {
  padding: 15px 34px;
  font-size: 14px;
  border-radius: 4px;
}

.btn-pt-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 22px;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-pt-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ── Hero ────────────────────────────────────────────────────── */
.pt-hero {
  background: var(--pt-dark);
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

.pt-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--pt-orange);
  margin-bottom: 20px;
  font-weight: 500;
}

.pt-hero-title {
  font-family: var(--pt-font-display);
  font-size: clamp(68px, 9vw, 96px);
  line-height: 0.9;
  color: #fff;
  margin-bottom: 24px;
}

.pt-hero-sub {
  font-size: 16px;
  color: var(--pt-gray-muted);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 38px;
  font-weight: 300;
}

.pt-hero-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.pt-hero-photo-placeholder {
  background: var(--pt-dark-3);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed #3a3a3a;
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pt-hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: var(--pt-orange);
}

/* ── Stats bar ───────────────────────────────────────────────── */
.pt-stats {
  background: var(--pt-orange);
}

.pt-stat-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.pt-stat-item:last-child {
  border-right: none;
}

.pt-stat-num {
  font-family: var(--pt-font-display);
  font-size: 30px;
  color: #fff;
  line-height: 1;
  display: block;
}

.pt-stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

/* ── Section base ────────────────────────────────────────────── */
.pt-section {
  padding: 72px 0;
}

.pt-section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pt-orange);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.pt-section-title {
  font-family: var(--pt-font-display);
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1;
  margin-bottom: 16px;
}

.pt-section-lead {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  max-width: 540px;
}

/* ── Bio ─────────────────────────────────────────────────────── */
.pt-bio-text {
  font-size: 16px;
  line-height: 1.95;
  color: #555;
  font-weight: 300;
}

.pt-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f3f0;
  border: 1px solid #e4e4e0;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 12px;
  color: #666;
  margin-top: 16px;
}

.pt-cert-badge svg {
  flex-shrink: 0;
}

/* ── Focus cards ─────────────────────────────────────────────── */
.pt-focus-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 26px 22px;
  height: 100%;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.pt-focus-card:hover {
  border-color: var(--pt-orange);
  transform: translateY(-2px);
}

.pt-focus-icon {
  width: 38px;
  height: 38px;
  background: var(--pt-orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.pt-focus-card-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.pt-focus-card-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

/* ── Packages ────────────────────────────────────────────────── */
.pt-pkg-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
  height: 100%;
  transition: border-color 0.2s;
}

.pt-pkg-card.featured {
  border: 2px solid var(--pt-orange);
}

.pt-pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pt-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pt-pkg-count {
  font-family: var(--pt-font-display);
  font-size: 44px;
  color: var(--pt-orange);
  line-height: 1;
  display: block;
}

.pt-pkg-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 18px;
  display: block;
  font-weight: 300;
}

.pt-pkg-price {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.pt-pkg-per {
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
  display: block;
}

.pt-pkg-saving {
  display: inline-block;
  background: var(--pt-orange-light);
  color: var(--pt-orange);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.pt-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pt-pkg-features li {
  font-size: 14px;
  color: #666;
  padding: 5px 0 5px 16px;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}

.pt-pkg-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--pt-orange);
  border-radius: 50%;
}

/* ── Service cards ───────────────────────────────────────────── */
.pt-svc-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color 0.2s;
  height: 100%;
}

.pt-svc-card:hover {
  border-color: #ccc;
}

.pt-svc-card.highlight {
  background: var(--pt-orange-light);
  border-color: var(--pt-orange);
}

.pt-svc-num {
  font-family: var(--pt-font-display);
  font-size: 30px;
  color: var(--pt-orange);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}

.pt-svc-card.highlight .pt-svc-num {
  opacity: 1;
}

.pt-svc-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.pt-svc-price {
  font-size: 14px;
  color: var(--pt-orange);
  font-weight: 500;
  margin-bottom: 8px;
}

.pt-svc-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.pt-svc-card.highlight .pt-svc-desc {
  color: #8a5030;
}

/* ── Gallery (Proměny klientů) ──────────────────────────────── */
.pt-gallery-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.pt-gallery-card:hover {
  border-color: var(--pt-orange);
  transform: translateY(-2px);
}

.pt-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.pt-gallery-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #999;
}

.pt-gallery-caption i {
  color: var(--pt-orange);
  font-size: 13px;
}

/* Lightbox modal */
#galerieModal .modal-content {
  background: transparent;
}

#galerieModal .btn-close {
  background-color: rgba(17, 17, 17, 0.65);
  border-radius: 50%;
  padding: 10px;
  opacity: 1;
  z-index: 5;
}

/* ── CTA section ─────────────────────────────────────────────── */
.pt-cta {
  background: var(--pt-dark);
  padding: 88px 0;
  text-align: center;
}

.pt-cta-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pt-orange);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.pt-cta-title {
  font-family: var(--pt-font-display);
  font-size: clamp(44px, 6vw, 62px);
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.pt-cta-sub {
  font-size: 16px;
  color: var(--pt-gray-muted);
  max-width: 400px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Footer ──────────────────────────────────────────────────── */
.pt-footer {
  background: #0a0a0a;
  padding: 28px 0;
  text-align: center;
}

.pt-footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ── Divider ─────────────────────────────────────────────────── */
.pt-divider {
  height: 1px;
  background: #e8e8e4;
  margin: 0;
}

/* ── Mobile menu ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .pt-navbar .navbar-collapse {
    background: var(--pt-dark);
    padding: 12px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
  }

  .pt-navbar .nav-link {
    padding: 10px 4px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .pt-navbar ul.navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .pt-navbar .btn-pt-primary {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 12px;
  }
}

/* ── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 991px) {
  .pt-hero {
    min-height: auto;
  }

  .pt-hero-photo-placeholder,
  .pt-hero-photo {
    min-height: 300px;
  }

  .pt-hero-accent {
    display: none;
  }

  .pt-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .pt-stat-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .pt-section {
    padding: 52px 0;
  }

  .pt-hero-title {
    font-size: 64px;
  }
}
