/* ============================================
   Sue-Kreativ - Stylesheet
   ============================================ */

/* Reset und Basis */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*outline: 1px solid red;*/
}

/*====================================*/


:root {
    --color-red: #e4301e;
    --color-red-hover: #e4301e;
    --color-dark-gray: #1a1a1a;
    --color-light-gray: #f6f3f3;
    --color-mid-gray: #4d4d4d;
    --color-middle-gray: #b3b3b3;
    --color-white: #ffffff;
    --color-black: #000000;
    --font-main: 'Noto Sans', sans-serif;
    --frame-offset: 3%;

    /* Grundfarben */
    --color-red: #e4301e;

    /* THEME – Standard (Light Mode) */
    --bg-gradient-start: #1a1a1a;
    --bg-gradient-end: #4d4d4d;

    --text-color: #ffffff;
    --link-color: #ffffff;
    --link-hover: var(--color-red);

    --footer-text: #ffffff;

}

/*====================================*/


html, body {
    height: 100%;
    margin: 0;
    /*overflow: hidden;*/
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-white);
}

/*====================================*/


body {
    background: linear-gradient(to bottom,
            var(--bg-gradient-start) -20%,
            var(--bg-gradient-end) 80%);
    color: var(--text-color);
    height: 100vh;
    overflow: hidden;
}

body.dark-mode {

    --bg-gradient-start: #4d4d4d;
    --bg-gradient-end: #ffffff;

    --text-color: #000000;
    --link-color: #000000;
    --footer-text: #000000;

}

/*====================================*/


/* =====================
   Links
===================== */

a {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.3s ease;
}

a:focus, a:active {
    color: var(--link-color);
}

a:hover {
    color: var(--link-hover);
    /*-webkit-text-stroke-color: white;
    -webkit-text-stroke-width: 1px;
    text-shadow: none;*/
}

/*====================================*/

/* =====================
   Frame Container
===================== */

.frame-container {
    min-height: 100%;
    padding: var(--frame-offset);
}

/*====================================*/


/* =====================
   Roter Rahmen
===================== */

.red-frame {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    min-height: calc(90vh - (2 * var(--frame-offset)));
    border: 4px solid var(--color-red);
    border-radius: 10vw 1.5vw 1.5vw 1.5vw;
    position: relative;
    padding: 0rem 0rem 0rem 0rem;
    box-shadow:
        /* Innerer schwarzer Schatten */
        inset 0 0 30px 10px rgba(28, 28, 28, 0.5),
        /* inset 0 0 60px 20px rgba(0, 0, 0, 0.4), */
        /* Äußerer weißer Nebel */
        0 0 40px 15px rgba(255, 255, 255, 0.15),
        0 0 80px 30px rgba(255, 255, 255, 0.08),
        0 0 120px 50px rgba(255, 255, 255, 0.04);
}

/*====================================*/


/* =====================
   Header
===================== */

.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    /* Logo links, Nav rechts */
    align-items: flex-start;
    width: 100%;
    padding: 0.5rem 2rem;
    padding-bottom: 0;
}

/*Dadurch bleibt der Footer unten*/
.site-main {
    flex: 1;
    margin-top: 2rem;
}

/*====================================*/


/* =====================
   Footer
===================== */

.main-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;

    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 400;
    color: var(--text-color);
}

/* Links */
.footer-link {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-red);
}

/* Punkte + Links */
.item {
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* Punkt */
.dot {
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
}

/*====================================*/


/* =====================
   Logo
===================== */

.logo-container {
    position: relative;
    margin-left: .5rem;
}

.logo {
    width: 14vw;
    height: auto;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.5));
}

.logo-klein {
    width: clamp(14px, 1.6vw, 22px);
    height: auto;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/*====================================*/


/* =====================
   Navigation
===================== */

.main-nav {
    display: flex;
    align-items: center;
    margin: 2rem 0 0 0;
}

/* Menü rechts plazieren */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2vw;
    flex-direction: row;
}

nav a {
    font-size: 3.5vh;
    color: black;
    text-shadow: 0 0 5px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 255, 255, 1);
}

.nav-link {
    color: black;
    font-weight: 600;
    font-size: 2vw;
    position: relative;
    padding: .5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-red);
    transition: width 0.4s ease 0.1s;
}

.nav-link:hover {
    color: var(--color-red);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.7),
        0 0 60px rgba(255, 255, 255, 0.5),
        0 0 80px rgba(255, 255, 255, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

/*====================================*/


/* =======================
   Hamburger (Standard: Desktop aus)
======================= */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--color-red);
    border-radius: 3px;
    transition: 0.3s;
}

/*====================================*/


/* =====================
   Überschriften
===================== */

.ueberschrift_rot {
    color: red;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ueberschrift_weiss {
    color: white;
    margin-top: 1rem;
}

/*====================================*/


/* =====================
   Hauptinhalt
===================== */

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 8px;
}

.content {
    margin: 3rem 1rem 1rem 10rem;
    /* oben | rechts | unten | links */
}

.content_impressum {
    margin: 3rem 1rem 1rem 6.7rem;
    /* oben | rechts | unten | links */
    flex: 1;
    /* nimmt restliche Höhe ein */
    overflow-y: auto;
    /* Scrollbalken wenn nötig */
    overflow-x: hidden;
}

.content_leistungen {
    margin: 3rem 1rem 1rem 6.7rem;
    /* oben | rechts | unten | links */
    flex: 1;
    /* nimmt restliche Höhe ein */
    overflow-y: auto;
    /* Scrollbalken wenn nötig */
    overflow-x: hidden;
}

.content_kontakt {
    margin: 0rem 2rem 1rem 15rem;
    /* oben | rechts | unten | links */
    flex: 1;
    /* nimmt restliche Höhe ein */
    overflow-y: auto;
    /* Scrollbalken wenn nötig */
    overflow-x: hidden;
}

.main-title {
    color: var(--color-red);
    margin-bottom: 3vh;
}

.title-line {
    display: block;
    /*nimmt volle Breite ein, beginnt neue Zeile*/
    font-size: 2rem;
    line-height: 1.2;
    text-shadow:
        0 0 20px rgba(196, 30, 58, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-text {
    color: var(--text-color);
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 4vh;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.quote-text {
    color: var(--text-color);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.quote_text_red {
    color: var(--color-red);
    font-style: italic;
    font-size: clamp(0.9rem, 1.8vw, 1.8rem);
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    font-weight: 600;
}

.hero-section {
    width: 100%;
    overflow-y: auto;
    /* nur vertikaler Scroll, wenn nötig */
    overflow-x: hidden;
    /* kein horizontaler Scroll */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* oben beginnen, scrollt bei Bedarf */
    align-items: center;
    text-align: left;
}

/*====================================*/


/* =================================
   Menüpunkt
==================================== */

.menupunkt {
    position: absolute;
    display: flex;
    flex-direction: column;
    /* untereinander */
    left: 1rem;
    bottom: 10rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    z-index: 100;
}

.menupunkt .mp_haupt {
    color: var(--color-red);
    font-size: 2rem;
    font-weight: 400;
    text-shadow:
        1px 1px 2px black,
        0 0 1rem #f5f3f3,
        0 0 1rem #f5f3f3;
}

.menupunkt .mp_sub {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow:
        1px 1px 2px black,
        0 0 1em #f5f3f3,
        0 0 0.2em #f5f3f3;
}

/*====================================*/

/* =====================
   LEISTUNGEN
===================== */

.grid_leistungen {
    display: grid;
    gap: 5rem;
    grid-template-columns: 1fr 1fr;
}

.text_main p {
    margin-bottom: 1rem;
}

/*====================================*/


/* =====================
    DATENSCHUTZ
===================== */

.grid_datenschutz {
    display: grid;
    grid-template-columns: 1fr;
}

/*====================================*/