﻿/*namespace Augustin.wwwroot {
    public class Site

}*/

.scroll-anchor {
    scroll-margin-top: 800px; /* Höhe deines fixen Headers */
}


body {
    background-color: lightgray;
}

.firmen-title {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    line-height: 1.2;
    color: #0a0a7e;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
    padding: 0rem;
}

.firmen-subtitle {
    font-size: 1.2rem;
    font-weight: normal;
    color: #444;
    display: block;
    margin-top: 0.3rem;
    margin-bottom: 2rem;
}







/* Hauptüberschrift */
.titel {
    font-size: 2em;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #0000FF;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

/* Abschnittsüberschrift */
.abschnitt {
    font-size: 1.4em;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #333333;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

/* Standardtext */
.text {
    font-size: 1em;
    font-family: Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1em;
}

/* Betonung im Fließtext */
.betont {
    font-size: 1em;
    font-weight: bold;
    font-family: Arial, sans-serif;
    color: #800000;
}

/* Fußnote oder Hinweis */
.klein {
    font-size: 0.85em;
    font-family: Verdana, sans-serif;
    color: #555555;
}
/* Fußnote oder Hinweis klein2*/

.klein2 {
    font-size: 0.6em;
    font-family: Verdana, sans-serif;
    color: #555555;
    /* Fußnote oder Hinweis kleiner*/
}

.kleiner {
    font-size: 0.5em;
    font-family: Verdana, sans-serif;
    color: #555555;
}
/* kleiner als Fettschrift*/
.Fett1 {
    font-weight: bold; /* Fettdruck aktiviert */
    font-size: 0.5em;
    font-family: Verdana, sans-serif;
    color: #555555;
}

.kontakt-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 3px solid #444444;  /*dunkler Rahme*/ 
    color: #222222;  /*dunkler Text*/ 
    background-color: #e0e0e0;  /*heller grauer Hintergrund */
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .kontakt-button:hover {
        border-color: #2c3e50;  /*dunkleres Blaugrau*/ 
        color: #2c3e50;
        background-color: #d0d8e0;  /*blaugrauer Hintergrund*/ 
    }

    .kontakt-button:active {
        background-color: #cc0000;  /*roter Hintergrund beim Klick*/ 
        border-color: #990000;
        color: #ffffff;
    }

    .kontakt-button .icon {
        margin-right: 0.5rem;
    }




.page-container {
    max-width: 800px;
    margin: 1rem auto;
    margin-top: 1rem;
    padding: 2rem;
    padding-top: 60px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-image: linear-gradient(to bottom, #f7f7b2, #d6c85a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: auto;
}

body {
    margin: 0;
    background: linear-gradient(to bottom right, #d5d0c8, #626987);
    font-family: 'Arial', serif;
}

.gmbh-container {
    max-width: 800px;
    margin: 1rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.home-gmbh-container {
    width: 100%; /* passt sich der Fensterbreite an */
    max-width: 800px; /* begrenzt die maximale Breite */
    margin: 1rem auto; /* zentriert den Container */
    padding: 2rem; /* Innenabstand */
    padding-top: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    box-sizing: border-box; /* Padding wird in die Breite eingerechnet */
}

.top-row {
    /* Farbverlauf tiefer Blauton */
    background: linear-gradient(to right, #031528, #001a66);
    /* Farbverlauf Nachtblau */
    /*    background: linear-gradient(to right, #06203c, #002b8f);
*/ /* Farbverlauf Marineblau */
    /*    background: linear-gradient(to right, #041a33, #003f9e);
*/
/*    background: linear-gradient(to right, #06203c, #4a00ff);
*/    color: white;
    padding: 1rem;
    width: 100vw;
}

.top-row2 {
    background: transparent;
    color: white;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 10cm;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation-name: fade;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background-color: #f0f0f0;
    }

@keyframes fade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.bockenheim-links:hover,
.bockenheim-links:focus {
    color: #004000;
    text-decoration: underline;
}

.bockenheim-links:active {
    color: #c00000;
    text-decoration: underline;
}

/* SIDEBAR */
.mobile-menu {
    width: 0px;
    min-width: 260px;
    max-width: 0px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
/*    background: transparent;
*/    /* Farbverlauf tiefer Blauton */
    background: linear-gradient(to right, #031528, #001a66);
    /* Farbverlauf Nachtblau */
    /*    background: linear-gradient(to right, #06203c, #002b8f);
*/ /* Farbverlauf Marineblau */
    /*    background: linear-gradient(to right, #041a33, #003f9e);
*/ z-index: 1000;
}

/* MAIN-Bereich */
.main {
    margin-left: 260px; /* verhindert Unterrutschen */
    padding-top: 60px;
}
.navbar-toggler {
    display: none;
}

/* TOP-ROW */
.top-row {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 1rem;
/*    background-color: red;
*/    color: white;
    z-index: 1500;
}

/* navbar-toggler ICON */
.navbar-toggler {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    background: none;
    position: absolute;
    left: 10px; /* Abstand vom linken Rand */
    top: 8px; /* vertikale Feinjustierung */
    z-index: 1000;
}

/* Desktop */
@media (min-width: 641px) {
    .mobile-menu {
        top: 60px;
        display: block;
        width: 260px;
        background: linear-gradient(to right, #031528, #001a66);
    }

    .top-row {
/*        margin-left: 260px;
*/        left: 0px;
        width: calc(100%);
    }
    
    .main {
        margin-left: 260px;
        padding-top: 60px;
    }

    .navbar-toggler {
        display: none;
    }
}


/* Mobil */
@media (max-width: 640px){
    .mobile-menu {
        top: 60px;
        display: none !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        overflow: hidden !important;
    }

        .mobile-menu.open {
            display: block !important;
            width: 260px !important;
            min-width: 260px !important;
            max-width: 260px !important;
            overflow-y: auto !important;
            position: fixed;
            top: 60px;
            left: 0;
            height: calc(100vh - 60px);
            background: linear-gradient(to right, #031528, #001a66);
            z-index: 5000;
        }
        




    .top-row {
        /*      margin-left: 0;*/
        left: 0;
        width: 100%;
    }

    .main {
        margin-left: 0 !important;
        padding-top: 60px;
    }

    .navbar-toggler {
        display: flex !important; /* statt block */
        align-items: center; /* Icon + Text sauber ausrichten */
        z-index: 4000;
    }
}

@media (max-width: 640px) {
    .mobile-menu:not(.open) {
        display: none !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        overflow: hidden !important;
    }
    @media (max-width: 640px) {
        .navbar-brand {
            display: none !important;
        }
    }
    }
