/* ================= RESET & BASIS ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    background: #fff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.text-center { text-align: center; }

/* Die kleinen gelben Linien (Spacer) aus den Bildern */
.spacer-xs {
    width: 30px;
    height: 3px;
    background-color: #ffc107;
    margin: 0 auto 15px auto;
}

/* ================= HEADER & NAV ================= */
header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo {
    height: 100px;
    transition: height 0.3s;
}

#nav-toggle { display: none; }

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    width: 30px;
    height: 3px;
    background: black;
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.nav a:hover { color: #ffc107; }

/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/feuerwerk.webp') center center / cover no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #ffc107;
    text-shadow: 2px 2px 15px black;
}

/* ================= ÜBER MICH (GRID OPTIMIERT) ================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 50px;
    align-items: start; 
    text-align: left;
    margin-top: 40px;
}

.section-title-left {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.spacer-left {
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin-bottom: 30px;
}

.main-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    max-width: 650px;
}

.profile-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 15px 15px 0px #ffc107;
    border: 1px solid #ddd;
}

/* ================= PRODUKT SEITE (STARTSEITE OPTIK) ================= */
.section-title-pyro {
    font-family: 'Arial Narrow', 'Arial', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Standard-Link Design für Home-Produkte laut Bild */
.btn-yellow-small {
    background-color: transparent;
    color: #0000EE;
    text-decoration: underline;
    font-size: 1.2rem;
    display: inline;
}

.btn-yellow-small:visited { color: #551A8B; }

.link-dark-underlined {
    font-family: 'Arial Narrow', sans-serif;
    color: #0000EE;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.link-dark-underlined:visited { color: #551A8B; }

/* ================= PRODUKT GRID (KATALOG SEITE) ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px 20px;
    margin: 40px 0;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-item img {
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-link {
    text-decoration: underline;
    color: #333;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
}

/* ================= YELLOW BAR ================= */
.yellow-bar {
    background: #ffc107;
    padding: 30px 0;
}

.flex-responsive {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

/* ================= KONTAKT WAHL-LAYOUT ================= */
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.contact-method {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wa-button-group {
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    width: 100%; 
    margin-top: 20px;
}

.wa-contact-btn {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.wa-fabian { background-color: #128c7e !important; }

.wa-contact-btn:hover { opacity: 0.9; }

.responsive-form-simple { width: 100%; margin-top: 15px; text-align: left; }

.responsive-form-simple input, 
.responsive-form-simple textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #333;
    color: #ffc107;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.contact-divider {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #999;
}

/* ================= KONTAKTDATEN INFO BLOCK ================= */
.info-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

.info-item { flex: 1; text-align: center; }

.info-icon { width: 50px; height: 50px; margin: 0 auto 15px; }

.info-icon img { width: 100%; }

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    z-index: 10000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* ================= FOOTER ================= */
footer { background: #111; color: white; text-align: center; padding: 30px 0; }

/* ================= MOBILE ANPASSUNGEN (HANDY) ================= */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .section-title-left { text-align: center; }
    .spacer-left { margin: 20px auto; }
    .profile-img { margin: 20px auto 0; }
}

@media (max-width: 768px) {
    .logo { height: 60px; }
    .burger { display: flex; }
    .nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: white; padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    #nav-toggle:checked ~ .nav { display: block; }
    .nav ul { flex-direction: column; gap: 15px; }

    .product-grid { grid-template-columns: 1fr; }
    
    .contact-grid, .info-grid { flex-direction: column; align-items: center; gap: 40px; }
    .contact-divider { padding: 20px 0; }
    .contact-divider span { background: #ffc107; padding: 5px 15px; border-radius: 20px; color: #333; }
    
    .whatsapp-float span { display: none; }
    .whatsapp-float { border-radius: 50%; padding: 15px; }
}