/* =============================================
   HERYERPARKOUR — Inner Page Template
   Mini hero + breadcrumb + content area
   ============================================= */

/* ——— Mini Hero ——— */
.page-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 64px) 0 48px;
  background: var(--bg-dark);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 77, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 91, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}

/* Ghost watermark — gizli */
.page-hero-ghost {
  display: none;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .bc-sep { color: rgba(255, 255, 255, 0.25); }
.breadcrumb .bc-current { color: var(--accent); }

/* Page title */
.page-title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  color: var(--text-on-dark);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-title .stroke-letter {
  -webkit-text-stroke: 2px var(--text-on-dark);
  color: transparent;
}
.page-title .accent-letter { color: var(--accent); }

.page-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 600px;
}

.page-hero .breadcrumb {
  margin-bottom: 24px;
}

/* ——— Page Content ——— */
.page-content {
  padding: 80px 0;
}
.page-content.bg-bej { background: var(--bg-primary); }
.page-content.bg-dark { background: var(--bg-dark); color: var(--text-on-dark); }

/* ——— Page Section ——— */
.page-section {
  margin-bottom: 64px;
}
.page-section:last-child { margin-bottom: 0; }
.page-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-primary);
}

/* ——— Info Grid (used in multiple pages) ——— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--white);
  padding: 32px;
  clip-path: var(--clip-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.info-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ——— Feature List ——— */
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ——— CTA Banner (inner pages) ——— */
.page-cta-banner {
  background: var(--bg-dark);
  padding: 64px 0;
  text-align: center;
}
.page-cta-banner .cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.page-cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  color: var(--text-on-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-cta-banner p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ——— Responsive ——— */
@media (max-width: 768px) {
  .page-hero { min-height: 260px; padding-bottom: 32px; }
  .page-content { padding: 48px 0; }
  .page-section { margin-bottom: 40px; }
  .info-grid { grid-template-columns: 1fr; }
}
