/*
Theme Name: Next-Fix Theme 2026
Theme URI: https://next-fix.de
Author: Next-Fix
Description: Custom Lead-Gen Theme mit AVIF Support & Snappy Animations
Version: 3.0
License: GNU General Public License v2 or later
*/

/* Reset & Basics */
html { margin-top: 0 !important; }

/* --- KATEGORIE KARTEN STYLES --- */

/* 1. Bild Grundeinstellung */
.category-card img {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* "Snappy" / Zackig */
    transform-origin: center;
}

/* 2. Hover Effekt (Zoom) */
.category-card:hover img {
    transform: scale(1.08);
}

/* 3. Verlauf nur beim Hover sichtbar machen */
.hover-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.category-card:hover .hover-overlay {
    opacity: 1;
}

/* 4. Text immer lesbar machen (ohne Verlauf) durch starken Schatten */
.card-text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.7);
}
/* --- MOBILE ANPASSUNGEN (Nur für Handy) --- */
@media screen and (max-width: 768px) {

    /* H1: Größere Schrift & weniger Abstand nach unten */
    h1 {
        font-size: 40px !important;    /* <--- Hier Größe anpassen (z.B. 36px oder 40px) */
        line-height: 1.2 !important;   /* Zeilenabstand: 1.2 ist gut für Überschriften */
        margin-bottom: 2px !important; /* Verringert Abstand nach unten */
    }

    /* Beschreibungstext: Zieht ihn näher an die H1 ran */
    h1 + p {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
