/* =========================================
   CSS RESET & BASELINE NORMALIZATION
============================================ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    background: #181b1f;
    color: #f5f5f5;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 16px;
    overscroll-behavior: none;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
ul, ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
a {
    color: #D0A170;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #fff;
    text-decoration: underline;
    outline: none;
}
button, .cta-button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
    color: inherit;
}
:focus {
    outline: 2px solid #D0A170;
    outline-offset: 2px;
}

/* =========================================
   BRAND TYPOGRAPHY & FONT IMPORT
============================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}
h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}
h4, h5, h6 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
p, li, ul, ol {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #e2e6ea;
}
.subheadline {
    color: #A9ADB3;
    font-size: 1.2rem;
    margin-bottom: 24px;
    letter-spacing: 0.025em;
}

/* =========================================
   LAYOUT STRUCTURE & CONTAINERS
============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    width: 100%;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #23272B;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(20,20,20,0.18), 0 1.5px 6px rgba(51,51,51,0.12);
    padding: 28px;
    min-width: 280px;
    flex: 1 1 320px;
    border: 1.5px solid #31353A;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
    transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover, .service-card:hover, .faq-item:hover {
    border-color: #D0A170;
    box-shadow: 0 6px 24px rgba(50,50,50,0.24), 0 4px 12px rgba(208,161,112,0.18);
    z-index: 2;
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f7fafc;
    color: #2A2E32;
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 0 3px 18px 0 rgba(44,44,44,0.13);
    border-left: 5px solid #29475A;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
    border-left-color: #D0A170;
    box-shadow: 0 6px 24px rgba(110,110,110,0.22);
}
.testimonial-meta {
    font-size: 1rem;
    color: #29475A;
    margin-left: 12px;
    font-weight: 600;
    font-style: italic;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #22262a;
    padding: 28px 22px 22px 22px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #31353A;
    min-width: 240px;
    flex: 1 1 300px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.feature-item img {
    filter: grayscale(0.3) brightness(0.88) drop-shadow(0 2px 4px #181b1f90);
    width: 38px;
    height: 38px;
}
.feature-item:hover {
    border-color: #D0A170;
    box-shadow: 0 6px 16px rgba(67,67,67,0.18);
}

/* ===============
 HERO SECTIONS
================== */
.hero {
    background: #23272B url('../assets/texture-industrial-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 56px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1.5px 16px rgba(34, 41, 51, 0.08);
}
.hero h1 {
    color: #fff;
    font-size: 2.4rem;
    text-shadow: 0 2px 8px #1b212590;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.hero .subheadline {
    font-size: 1.26rem;
    color: #D0A170;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    margin-bottom: 36px;
}

/* ===============
 BUTTONS & INTERACTIVES
================== */
.cta, .cta-button, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.08rem;
    cursor: pointer;
    letter-spacing: 0.02em;
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(44,44,44,0.18);
    margin-right: 20px;
    transition: background 0.22s, color 0.15s, box-shadow 0.18s, transform 0.16s;
    border: none;
}
.cta.primary, .cta-button.primary, .cookie-banner button.accept {
    background: #D0A170;
    color: #181b1f;
}
.cta.primary:hover, .cta-button.primary:hover, .cookie-banner button.accept:hover {
    background: #29475A;
    color: #D0A170;
    box-shadow: 0 3px 8px #29475ad0;
    transform: translateY(-2px) scale(1.04);
}
.cta.secondary, .cookie-banner button.settings {
    background: #29475A;
    color: #D0A170;
}
.cta.secondary:hover, .cookie-banner button.settings:hover {
    background: #22262A; color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.cookie-banner button.reject {
    background: #23272B;
    color: #D0A170;
}
.cookie-banner button.reject:hover {
    background: #d0334b;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
button:disabled, .cta[disabled], .cta-button[disabled] {
    background: #6d747b;
    color: #fff;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Inline icon alignment (e.g. in footer/contact-details) */
img[alt^="Adresse"],
img[alt^="Telefon"],
img[alt^="E-Mail"],
img[alt^="Öffnungszeiten"] {
    width: 20px; height: 20px; vertical-align: middle; margin-right: 8px;
    filter: grayscale(0.1) brightness(0.92);
}

/* ===============
  NAVIGATION & HEADER
================== */
header {
    background: #181b1f;
    box-shadow: 0 2px 16px rgba(28,30,36,0.14);
    padding: 14px 0;
    z-index: 100;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
header .main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}
header img[alt="Zeno Fade Hochzeiten"] {
    width: 162px;
    margin-right: 40px;
}
.main-nav a {
    color: #A9ADB3;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 6px;
    margin-right: 4px;
    transition: background 0.14s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
    color: #fff;
    background: #22262A;
}
.main-nav a.cta.primary {
    background: #D0A170;
    color: #23272B;
    margin-left: 16px;
    box-shadow: 0 2px 8px #D0A17022;
}
.main-nav a.cta.primary:hover {
    background: #29475A;
    color: #D0A170;
}
.mobile-menu-toggle {
    display: none;
    font-size: 2.2rem;
    background: #22262A;
    color: #D0A170;
    border-radius: 8px;
    padding: 7px 16px 7px 16px;
    margin-left: 14px;
    border: 2px solid #31353A;
    transition: background 0.16s, color 0.16s, box-shadow 0.13s;
    z-index: 300;
}
.mobile-menu-toggle:active {
    background: #D0A170;
    color: #23272B;
}

/* =========================================
   MOBILE MENU OVERLAY
============================================ */
.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(28, 33, 38, 0.98);
    transform: translateX(-100vw);
    transition: transform 0.38s cubic-bezier(.84, .01, .28, .97);
    z-index: 4000;
    padding: 34px 24px 18px 24px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    align-self: flex-end;
    margin-bottom: 18px;
    background: #29475A;
    color: #D0A170;
    font-size: 2.2rem;
    padding: 4px 16px;
    border-radius: 7px;
    border: 2px solid #22262A;
    transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover {
    background: #fff; color: #29475A;
}
.mobile-menu nav.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-nav a {
    color: #f2f3f5;
    font-size: 1.25rem;
    padding: 12px 0;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    letter-spacing: 0.012em;
    transition: color 0.18s, background 0.15s;
    border-radius: 6px;
    min-width: 170px;
}
.mobile-nav a:hover {
    color: #D0A170; background: #23272B;
}

/* =======================
   MAIN & PAGE SECTIONS
========================= */
main {
    padding-bottom: 40px;
    min-height: 70vh;
    width: 100%;
}
.features, .about, .cta, .services, .testimonials, .faq, .legal, .contact-details {
    margin-bottom: 60px;
    padding: 40px 0;
}
.feature-grid, .service-cards, .step-timeline {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 18px;
    width: 100%;
}
.service-card {
    background: #22262a;
    color: #fff;
    border-radius: 8px;
    padding: 24px 22px;
    box-shadow: 0 2px 10px 0 rgba(40,50,59,0.10);
    min-width: 260px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    align-items: flex-start;
    border: 1.2px solid #31353A;
    transition: border-color 0.16s, box-shadow 0.16s;
    gap: 10px;
}
.service-card img {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    filter: grayscale(0.2) brightness(0.8);
}
.step-timeline .step {
    background: #23272B;
    color: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 10px 0 rgba(40,50,59,0.11);
    min-width: 220px;
    flex: 1 1 220px;
    margin-bottom: 20px;
    border: 1.2px solid #31353A;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    transition: border-color 0.16s, box-shadow 0.16s;
    position: relative;
}
.step-timeline .step:hover {
    border-color: #D0A170;
    box-shadow: 0 3px 24px 0 #d0a17029;
}
.step-timeline .step img {
    width: 32px;
    height: 32px;
    filter: grayscale(0.25) brightness(0.85);
    margin-bottom: 8px;
}

/* ===============
  FAQ ACCORDION
================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #23272B;
    border-left: 5px solid #29475A;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 2px 10px rgba(41,71,90,0.09);
    color: #e2e6ea;
    margin-bottom: 20px;
    transition: border-color 0.16s, box-shadow 0.14s;
}
.faq-item h3 {
    color: #D0A170;
    margin-bottom: 8px;
}
.faq-item:hover {
    border-left: 5px solid #D0A170;
    box-shadow: 0 4px 12px 0 #d0a17022;
}

/* ===============
  ABOUT / CONTACT DETAILS
================== */
.contact-details ul.contact-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
}

/* ===============
  LEGAL & POLICY SECTIONS
================== */
.legal {
    background: #23272B;
    color: #e6e2de;
    border-radius: 12px;
    margin-bottom: 60px;
}
.legal h1, .legal h2, .legal h3 {
    color: #D0A170;
}
.legal ul {
    margin-top: 12px;
    margin-bottom: 12px;
}

/* ===============
  CTA SECTIONS
================== */
.cta {
    background: #29475A;
    color: #fff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(38,46,52,.09);
    margin-bottom: 0;
}
.cta h2 {
    color: #fff;
    margin-bottom: 18px;
}
.cta .cta-button {
    margin-left: 0;
    margin-top: 16px;
}

/* ===============
  FOOTER
================== */
footer {
    width: 100%;
    background: #181b1f;
    color: #A9ADB3;
    margin-top: 60px;
    font-size: 1rem;
}
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 20px 10px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1.2px solid #23272B;
}
.footer-wrapper img[alt="Zeno Fade Hochzeiten"],
.footer-wrapper img[alt="Zeno Fade Hochzeiten"] {
    width: 52px;
    margin-bottom: 14px;
    filter: grayscale(0.12) brightness(1);
}
.footer-nav {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.footer-nav a {
    color: #D0A170;
    font-size: 1rem;
    margin-bottom: 8px;
    transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact {
    font-size: 0.95rem;
    color: #A9ADB3;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 230px;
}
.legal-line {
    background: #22262a;
    color: #A9ADB3;
    font-size: 0.9rem;
    text-align: center;
    padding: 20px 0;
    letter-spacing: 0.02em;
    border-top: 1.2px solid #2a2e34;
    width: 100%;
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
============================================ */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    background: #23272B;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 28px 16px;
    font-size: 1rem;
    z-index: 5000;
    box-shadow: 0 -4px 32px #181B1F99;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s, transform 0.38s;
}
.cookie-banner.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(140px);
}
.cookie-banner .cookie-message {
    flex: 1 1 auto;
    padding-right: 20px;
    color: #fff;
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.cookie-modal-overlay {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(34,42,52,0.81);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
    opacity: 0; pointer-events: none;
}
.cookie-modal {
    background: #fff;
    color: #353c44;
    border-radius: 18px;
    box-shadow: 0 6px 32px #1a2028C7;
    max-width: 430px;
    width: 97vw;
    padding: 36px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.cookie-modal h2 {
    color: #29475A;
    font-size: 1.32rem;
    margin-bottom: 6px;
}
.cookie-modal .cookie-modal-close {
    position: absolute; top: 13px; right: 14px;
    font-size: 1.6rem;
    background: transparent;
    border: none;
    color: #29475A;
    cursor: pointer;
    transition: color 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
    color: #D0A170;
}
.cookie-preference-list {
    display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px;
}
.cookie-preference-list label {
    font-size: 1.08rem;
    color: #29475A;
    display: flex; align-items: center;
    gap: 9px;
}
.cookie-preference-list input[type="checkbox"] {
    margin-right: 7px;
}
.cookie-modal .cookie-buttons {
    display: flex; gap: 13px; margin-top: 9px;
}
.cookie-category-essential {
    font-weight: 600; color: #29475A;
}
.cookie-category-essential input[type="checkbox"]:disabled {
    accent-color: #D0A170;
}

/* =========================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .container, .footer-wrapper {
        max-width: 1000px;
    }
}
@media (max-width: 900px) {
    .container, .footer-wrapper {
        max-width: 94vw;
    }
    .feature-grid, .service-cards, .step-timeline {
        gap: 16px;
    }
}
@media (max-width: 768px) {
    header .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-block;
    }
    .hero h1 {
        font-size: 1.7rem;
    }
    .hero {
        padding: 34px 0 30px 0;
    }
    .feature-grid, .service-cards, .step-timeline {
        flex-direction: column;
        gap: 14px;
    }
    .testimonial-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
    .faq-accordion {
        gap: 14px;
    }
    .section {
        padding: 24px 6px;
        margin-bottom: 36px;
    }
    .about, .features, .cta, .services, .testimonials, .faq, .legal, .contact-details {
        padding: 24px 0;
    }
    .footer-wrapper {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding: 22px 10px 10px 10px;
    }
}
@media (max-width: 540px) {
    h1 { font-size: 1.28rem; }
    h2 { font-size: 1rem; }
    .hero {
        padding: 14px 0 14px 0;
    }
    .section {
        padding: 12px 0;
        margin-bottom: 18px;
    }
    .container, .footer-wrapper {
        padding-left: 6px;
        padding-right: 6px;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 8px;
    }
    .cookie-banner .cookie-message {
        padding-right: 0;
        font-size: 0.97rem;
    }
    .cookie-banner .cookie-actions {
        flex-direction: column;
        gap: 7px;
    }
}

/* =========================================
   MISC MICRO-INTERACTIONS & ANIMATIONS
============================================ */
.cta-button, .feature-item, .service-card, .faq-item, .card, .step {
    transition: box-shadow 0.22s, border-color 0.17s, background 0.17s, color 0.15s, transform 0.14s;
}
.cta-button:active, .feature-item:active, .service-card:active, .faq-item:active {
    transform: scale(0.98);
}
input[type="checkbox"]:focus, input[type="radio"]:focus {
    outline: 2px solid #D0A170 !important;
}

::-webkit-scrollbar {
    width: 9px; background: #23272B;
}
::-webkit-scrollbar-thumb {
    background: #31353A; border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D0A17044;
}

/* Prevent content overlap */
.card:not(:last-child), .service-card:not(:last-child), .feature-item:not(:last-child), .step:not(:last-child), .faq-item:not(:last-child) {
    margin-bottom: 20px;
}

/* End of CSS */
