:root {
    --primary-color: #2c3e50; /* Dunkles Blau/Grau für Architektur-Look */
    --accent-color: #e67e22;  /* Akzent für Call-to-Action */
    --bg-light: #f9f9f9;
    --text-color: #333;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    margin: 0;
	
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ANFANG - für script-linkfarbe-bei-page-wechseln.js (link-farbe bei aktivierter page wechseln) */
/* Das !important ist hier zwingend, um style="..." im HTML zu besiegen */
.active-link {
    color: #FF8C00 !important; /* linkfarbe bei aktiver page */
    font-weight: 400 !important;
}
/* ENDE - für script-linkfarbe-bei-page-wechseln.js (link-farbe bei aktivierter page wechseln) */

.logo {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span { color: var(--accent-color);
}

a:visited { color: purple; } /* Besucht */
a:hover { background-color: #EEEEEE; } /* Maus drüber */


ul {
    display: flex;
    list-style: none;
}

ul li a {
    text-decoration: none;
    /*color: var(--primary-color);*/
    padding: 8px 8px;
    font-weight: 400;
    /*transition: 0.3s;*/
}


/* ANFANG - Grundaufbau für den Mouseover (Hover) Effekt der Unterverlinkungen */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Styling der Unterliste */
.sub-menu {
    display: none;             /* Standardmäßig unsichtbar */
    position: absolute;
    background-color: #f5f5f5;  /* Hellgrauer Hintergrund */
    min-width: 250px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Links innerhalb der Unterliste */
.sub-menu li a {
    display: block;
    padding: 4px 15px;
    text-decoration: none;
    color: inherit;            /* Übernimmt Schriftfarbe der Hauptlinks */
    font-size: 0.9rem;       /* Beispielwert: entspricht ca. 2px kleiner als Standard */
}

/* Hover-Effekt für die einzelnen Unterlinks */
.sub-menu li a:hover {
    background-color: #FFDDCB; /* Etwas dunkleres Grau beim Drüberfahren */
}

/* DIE LOGIK: Einblenden bei Mouseover über das Eltern-Element */
.dropdown:hover .sub-menu {
    display: block;
}
/* ENDE - Grundaufbau für den Mouseover (Hover) Effekt der Unterverlinkungen */

/* Typography SEO */
h1 {
    font-size: 3rem; /* Ziemlich groß */
    color: #FF964F; /* var(--primary-color); */
    margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
	font-weight: 300;
	}
    
h2 {
    font-size: 3rem; /* Ziemlich groß */
    color: #FF964F; /* var(--primary-color); */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
	font-weight: 300;
}

p {
    font-size: 2rem; /* 2/3 von H2 (3 * 0.66 ≈ 2) */
    color: #666;
    margin-bottom: 20px;
}

/* Cards & Architecture Design */
.page {
    display: none;
    padding: 60px 0;
    animation: fadeIn 0.5s ease-in;
	margin-top: 0.2em;
}

.page.active { display: block; }

.card {
    background: #fff;
    padding: 30px;
    margin: 20px 0;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow); /* 3D Tiefenwirkung */
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.placeholder-wide {
    width: 100%;
    height: 300px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    border: 1px dashed #ccc;
    font-style: italic;
}

/* Forms */
#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    nav { flex-direction: column; }
    h2 { font-size: 2rem; }
    p { font-size: 1.3rem; }
    ul { flex-wrap: wrap; justify-content: center; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

