/* TYPOGRAFIE */
body, html, p, h1, h2, h3, h4, h5, h6,
ul.mainNav1 li a, ul.mainNav2 li a,
#header, #footer, #content, #navigation, #sidebar {
    font-family: "Century Gothic", Arial, Helvetica, sans-serif !important;
    color: #000;
}

/* Links */
a:link, a:visited { text-decoration: underline; color: rgb(157,63,63); }
a:active { text-decoration: underline; }
a:hover { text-decoration: none; cursor: none; }

/* BODY / HINTERGRUND */
body {
    background: #fff;
    padding: 20px 0 0 0;
    margin: 0;
    cursor: none;
}

/* HEADER ausblenden */
#header h1, #header img,
#header > img, #header > h1,
img[src="header.jpg"] {
    display: none !important;
}

/* CONTAINER */
#container {
    margin: 0 auto;
    width: 90%;
    max-width: 1500px;
    background: #fff;
}

/* CONTENT-BEREICH: nur obere Trennlinie */
#content-wrapper {
    border-top: 1px solid #bbb;
    padding: 30px;
    margin: 20px 0 40px 0;
    background: #fff;
}
#content { width: 100%; }

/* =============================
   STICKY NAVIGATION
============================== */
#navigation-wrapper {
    width: 100%;
    position: relative;
    top: 0;
    z-index: 9998;
    padding: 50px 0 30px 0;
}

#navigation-wrapper.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #fdf9f2;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 50px 0 30px 0;
}

/* NAVIGATION STYLING */
#navigation {
    display: flex;
    align-items: center; 
    justify-content: center;
    width: 100%;
    gap: 60px;
}

/* Logo/Schriftzug */
#logo {
    white-space: nowrap;
    position: absolute;
    left: 30px;
}
#main-name {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 5px; 
}
#accent-l { color: rgb(157,63,63); font-weight: bold; font-size: 20px; }
#subtitle { color: #777; font-weight: normal; font-size: 14px; }

/* Services Text unter Logo */
#services {
    color: #aaa;
    font-size: 10px; /* kleiner */
    margin-top: 5px;
    width: 100%;
    letter-spacing: 3px; /* größerer Buchstabenabstand */
    display: flex;
    gap: 25px; /* Abstand zwischen den Wörtern vergrößert */
}

/* Navigation Links */
ul.mainNav1, ul.mainNav2 {
    display: inline-block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}
ul.mainNav1 li, ul.mainNav2 li { display: inline-block; margin: 0 20px; }
ul.mainNav1 li a, ul.mainNav2 li a {
    font: normal 12px/140% "Century Gothic", Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: transform 0.2s ease, color 0.2s ease;
}
ul.mainNav1 li a:hover, ul.mainNav2 li a:hover {
    transform: scale(1.4);
    color: rgb(157,63,63);
}
ul.mainNav1 a.current { font-weight: bold; }

/* FOOTER */
#footer {
    clear: both;
    margin-top: 30px;
    background: #fff;
    padding: 30px 0;
}
#footer .gutter { padding: 20px 15px; }
#footer var, #footer .sitemap, #footer [class*="sitemap"] { display: none !important; }

/* CUSTOM CURSOR */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(157,63,63,0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: transparent;
    transition: background 0.05s ease, transform 0.01s ease, box-shadow 0.2s ease;
}

#custom-cursor.hover {
    background: rgb(157,63,63);
    transform: scale(1.5) translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(157,63,63,0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    #content-wrapper { padding: 20px; margin: 20px 0; }
    ul.mainNav1 li, ul.mainNav2 li { margin: 0 10px; }
    #logo #main-name { font-size: 16px; letter-spacing: 4px; }
}
@media (max-width: 768px) {
    #navigation { flex-direction: column; align-items: center; gap: 10px; }
    ul.mainNav1 li, ul.mainNav2 li { display: block; margin: 5px 0; }
    #services { justify-content: flex-start; gap: 15px; }
}