/* ============================================================
   videoproduktion-industrie.css – Page-specific styles for videoproduktion-industrie.html
   ============================================================ */

p { line-height: 1.7; margin-bottom: 1.2rem; }

/* ── CONTAINER OVERRIDE ── */
.container {
    max-width: 1100px;
}

/* ── PAGE HERO ── */
.page-hero {
    padding: 160px 0 100px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 620px;
    margin-bottom: 36px;
    text-align: left;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 80px 0; }
.content-section:nth-child(odd) { background-color: #000; }
.content-section:nth-child(even) { background-color: #111; }

.content-block { max-width: 820px; }

.content-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    width: 60px; height: 3px;
    background-color: #fff;
    bottom: 0; left: 0;
}

/* ── VIDEO TYPES GRID ── */
.video-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.video-type-item {
    padding: 24px;
    border: 1px solid #222;
    background-color: #0a0a0a;
    transition: border-color 0.3s ease;
}

.video-type-item:hover { border-color: #555; }

.video-type-item i {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}

.video-type-item h3 { font-size: 17px; margin-bottom: 8px; }
.video-type-item p { font-size: 13px; color: #999; margin: 0; line-height: 1.6; }

/* ── CTA SECTION ── */
.cta-section {
    background-color: #fff;
    color: #000;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 { font-size: 36px; margin-bottom: 16px; color: #000; }
.cta-section p { font-size: 17px; color: #333; max-width: 600px; margin: 0 auto 30px; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 30px; }
    .page-hero p { font-size: 15px; }
    .content-section { padding: 50px 0; }
    .content-block h2 { font-size: 24px; }
    .highlights, .video-types { grid-template-columns: 1fr; }
    .cta-section h2 { font-size: 26px; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 24px; }
    .btn-solid, .btn-dark { padding: 12px 22px; font-size: 14px; width: 100%; text-align: center; }
}
