/* =========================================================
   BASIS / TYPOGRAFIE
   ========================================================= */

html {
    font-size: clamp(17px, 1.2vw, 20px);
}

body {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

/* =========================================================
   ÜBERSCHRIFTEN
   ========================================================= */

h1, h2, h3 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-top: 0;
}

h2 {
    font-size: 2.4em;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 1rem;
}

/* =========================================================
   LINKS
   ========================================================= */

a {
    color: #d66bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

/* Responsive Navigation */
@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 0.8rem 1.5rem;
    }

    .main-nav a {
        font-size: 0.8rem;
    }
}

/* =========================================================
   CONTENT-WRAPPER
   ========================================================= */

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 4rem;
}

/* =========================================================
   HERO-SECTIONS
   ========================================================= */

.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

@media (max-width: 800px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* =========================================================
   EINSPALTIGER CONTENT (Produkte, Textseiten)
   ========================================================= */

.hero-section-wide {
    max-width: 900px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* große Einleitungsheadline */
.hero-section-wide > h3:first-child {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    max-width: 42rem;
    line-height: 1.25;
}

/* =========================================================
   PRODUKTE
   ========================================================= */

.product-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 2.5rem 0 0.6rem;
}

.product-name {
    font-size: 1.25em;      /* RELATIV zur Textgröße */
    font-weight: 700;
    color: #ff7b00;
    margin: 0;
}

.product-price {
    font-size: 0.95em;
    font-weight: 600;
    color: #fff;
}

.product-features {
    margin: 0 0 2rem 1.2rem;
}

/* =========================================================
   FADE-IN (optional – kann entfernt bleiben)
   ========================================================= */

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #000;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   KONTAKTFORMULAR (Grav Forms)
   ========================================================= */

.hero-section-wide.contact-form {
    padding-top: 2rem;
}

.contact-form form {
    max-width: 480px;
    margin: 0;
}

.contact-form .form-field {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.35);
    background: #000;
    color: #e5e5e5;
    font-size: 0.95rem;
}

.contact-form textarea {
    min-height: 240px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 18px rgba(255,0,255,0.35);
    outline: none;
}

.contact-form input[type="submit"],
.contact-form button {
    margin-top: 1rem;
    padding: 0.9rem 2.8rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #ff00ff, #9b5bff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 600px) {
    .contact-form input[type="submit"],
    .contact-form button {
        width: 100%;
    }
}

/* Honeypot-Feld verstecken */
.contact-form .form-field.website,
.contact-form .form-field[name="website"] {
    display: none !important;
}
