/* ============================================
   IMPRINTS PAGE STYLES
   BloodTie Publishing - Genre-Focused Imprints
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 2rem 2rem 5rem;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 26, 26, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #050506 0%, #0a0a0b 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--parchment);
    margin-bottom: 1rem;
    white-space: nowrap;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.03em;
    color: var(--steel-light);
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--parchment);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--steel-light);
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--steel);
    margin-bottom: 3rem;
    font-style: italic;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Imprint Grid */
.imprint-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.imprint-card {
    background: rgba(21, 21, 21, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.imprint-card:hover {
    border-color: var(--crimson);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.15);
    transform: translateY(-2px);
}

.imprint-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--parchment);
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

.imprint-genre {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 1.5rem;
}

.imprint-card p:not(.imprint-genre) {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--steel-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--steel-light);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--crimson), #a00000);
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #a00000, var(--crimson));
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .imprint-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 2rem 1.5rem 4rem;
        min-height: 35vh;
    }

    .content-section {
        padding: 3.5rem 1.5rem;
    }

    .content-section h2::after {
        width: 60px;
    }

    .imprint-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .imprint-card {
        padding: 2rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.75rem;
    }
}
