/*
Theme Name: MaD-Event
Theme URI: https://mad-event.com
Author: MaD-Event
Description: Individuelles WordPress Theme für professionelle Veranstaltungstechnik.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: mad-event
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-light: #151515;
    --text-main: #ffffff;
    --text-muted: #b5b5b5;
    --accent-red: #e30613;
    --accent-red-dark: #a8000b;
    --border: rgba(255,255,255,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.main-navigation a {
    color: white;
    font-weight: 500;
    transition: .3s;
}

.main-navigation a:hover {
    color: var(--accent-red);
}

/* Hero */

.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.85)
    ),
    url("assets/images/hero.jpeg") center/cover;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    font-size: clamp(2.8rem,5vw,5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero span {
    color: var(--accent-red);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 3px;
    background: var(--accent-red);
    color:white;
    font-weight:600;
    transition:.3s;
}

.btn:hover {
    background: var(--accent-red-dark);
}


/* Sections */

.section {
    padding:100px 0;
}

.section-title {
    margin-bottom:50px;
}

.section-title h2 {
    font-size:2.5rem;
}

.section-title h2 span {
    color:var(--accent-red);
}


/* Cards */

.cards {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card {
    background:var(--bg-light);
    padding:35px;
    border:1px solid var(--border);
    transition:.3s;
}

.card:hover {
    transform:translateY(-8px);
    border-color:var(--accent-red);
}

.card h3 {
    margin-bottom:15px;
    color:white;
}


/* Footer */

.site-footer {
    padding:40px 0;
    background:#050505;
    color:#999;
    text-align:center;
}


/* Responsive */

@media(max-width:900px){

    .main-navigation ul {
        display:none;
    }

    .cards {
        grid-template-columns:1fr;
    }

    .hero {
        min-height:600px;
    }
}
.menu-toggle {
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:32px;
    cursor:pointer;
}


@media(max-width:900px){

    .menu-toggle {
        display:block;
    }


    .main-navigation {
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#0a0a0a;
        display:none;
    }


    .main-navigation.active {
        display:block;
    }


    .main-navigation ul {
        display:flex;
        flex-direction:column;
        padding:30px;
        gap:20px;
    }

}
.card img {

    width:100%;
    height:240px;
    object-fit:cover;
    margin-bottom:20px;

}


.card ul {

    margin-top:20px;
    padding-left:20px;

}


.card li {

    color:#b5b5b5;
    margin-bottom:8px;

}
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {

    width:100%;
    padding:15px;
    background:#111;
    border:1px solid rgba(255,255,255,.15);
    color:white;
    margin-top:8px;
    margin-bottom:20px;

}


.wpcf7 textarea {

    min-height:150px;

}


.wpcf7 input[type="submit"] {

    background:#e30613;
    border:none;
    cursor:pointer;
    font-weight:600;
    padding:15px 35px;

}


.wpcf7 input[type="submit"]:hover {

    background:#a8000b;

}

/* MaD-Event 1.1 additions */
body { padding-top: 90px; }
.site-branding { min-width: 190px; }
.custom-logo-link, .custom-logo-link img { display:block; }
.custom-logo { max-width:min(340px,45vw); max-height:70px; object-fit:contain; }
.text-logo { display:inline-flex; flex-wrap:wrap; align-items:baseline; line-height:.85; font-weight:900; font-style:italic; letter-spacing:-2px; }
.text-logo-main,.text-logo-red { font-size:2rem; }
.text-logo-red,.site-footer span { color:var(--accent-red); }
.text-logo small { flex-basis:100%; font-size:.62rem; letter-spacing:2.5px; margin-top:7px; color:#fff; font-style:normal; text-transform:uppercase; }
.footer-grid { display:grid; gap:18px; justify-items:center; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:center; gap:18px; }
.footer-links a:hover,.legal-content a:hover { color:var(--accent-red); }
.copyright { font-size:.9rem; }
.subpage-hero { height:55vh; min-height:430px; }
.contact-grid { grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr); align-items:start; }
.legal-page .section { padding-top:70px; }
.legal-content { max-width:950px; }
.legal-content h1 { font-size:clamp(2.4rem,5vw,4rem); margin-bottom:35px; }
.legal-content h2 { color:var(--accent-red); margin:44px 0 12px; font-size:1.65rem; }
.legal-content h3 { margin:30px 0 8px; font-size:1.25rem; }
.legal-content p,.legal-content li { color:#d0d0d0; }
.legal-content ul { margin:12px 0 20px 22px; }
.legal-toc { display:flex; flex-wrap:wrap; gap:12px; margin:25px 0 40px; }
.legal-toc a { border:1px solid var(--border); padding:10px 15px; }
.legal-note,.form-notice,.privacy-hint { margin-top:24px; padding:16px; border-left:3px solid var(--accent-red); background:#111; }
.wpcf7 label { display:block; margin-bottom:4px; font-weight:600; }
.wpcf7 input[type="checkbox"] { width:auto; margin-right:8px; }
.wpcf7 .wpcf7-response-output { margin:20px 0 0; padding:12px; }
@media(max-width:900px){ body{padding-top:72px}.header-inner{height:72px}.main-navigation{top:72px}.custom-logo{max-height:52px;max-width:240px}.text-logo-main,.text-logo-red{font-size:1.6rem}.contact-grid{grid-template-columns:1fr}.subpage-hero{min-height:380px}.legal-page .section{padding-top:45px}.section{padding:70px 0} }
