/*
Theme Name:     MainSecure24 Child Theme
Template:       neve
Version:        1.0.0
*/

/* --- Farb- und Schriftvariablen direkt im CSS --- */
body {
    font-family: 'Roboto', sans-serif;  /* Hauptschriftart */
    background-color: #FFFFFF;  /* Hintergrundfarbe Weiß */
    color: #1E2A47;  /* Textfarbe Blau */
    line-height: 1.6;
}

/* --- Überschriften-Schriftarten --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;  /* Schriftart für Überschriften */
    color: #1E2A47;  /* Überschriftenfarbe Blau */
    text-transform: uppercase;  /* Alle Überschriften in Großbuchstaben */
}

/* --- Links und Buttons --- */
a, button {
    color: #FFFFFF;
    text-decoration: none;
}

a:hover, button:hover {
    color: #CBB300;  /* Blau für Hover-Effekt der Links und Buttons */
}

/* --- Sticky Navigation (Desktop) --- */
.header-main {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #1E2A47 !important;  /* Blau für den Hintergrund */
    color: #FFFFFF !important;  /* Weiß für die Schrift */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-main a {
    color: #FFFFFF !important;
}

.header-main a:hover {
    color: #CBB300 !important;
}

.header-main.is-sticky {
    background-color: #1E2A47 !important;
    opacity: 1 !important;
}

/* --- Sticky Navigation (Mobile) --- */
@media screen and (max-width: 959px) {
  .header-main {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background-color: #1E2A47 !important;
    width: 100% !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .header-main-inner,
  .header--row-inner {
    background-color: #1E2A47 !important;
  }
}

/* --- Header-Menu-Sidebar-BG (Sidebar) --- */
.Header-Menu-Sidebar-BG {
    background-color: #1E2A47 !important;
}



/* --- Logo Schatten --- */
.neve-site-logo {
    filter: drop-shadow(0 4px 6px rgba(255, 255, 255, 0.6)) !important;  /* Weißer Schatten für das Logo */
}

/* --- Scroll-to-Top Button --- */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #1E2A47;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    border: 1px solid #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background 0.3s;
}

#scrollToTop:hover {
    background: #0065CB;
    color: #CBB300;
}

/* --- Copyright Footer --- */
.footer-wrapper {
    background-color: #1E2A47;  /* Hintergrund schwarz */
    color: #fff;  /* Schriftfarbe Weiß */
    padding: 20px 0;
    font-family: 'Roboto', sans-serif;  /* Schriftart für den Footer */
    text-align: center;
}

.footer-author-line {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    color: #ffffff;
}

.footer--row-inner.footer-bottom-inner.footer-content-wrap {
  display: none !important;
}
