 /* Globale Stile */
 /*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff46;
    color: #000000;
    font-size: 16px; 
    
}*/
/*padding-top: 130px; /* Die Höhe der Navigationsleiste, hier als Beispiel 100px */
 /* Füge hier die zusätzlichen CSS-Stile für die Sidebar hinzu */
 .container {
    display: flex;
}

/*.sidebar {
    width: 100px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    height: 100%; *//* Damit die Sidebar die volle Höhe des Bildschirms einnimmt 

}*/





/*service-list*/
.service-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f1f1f1;
    text-align: center;
  }

  .service-list li {
    /*float: left;*/
    display: inline-block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  .service-list li:hover {
    background-color: #414141;
    color: #ccc;
  }


  .grey-section{
    background-color: #f3f3f3 ;
    text-align: center;
    margin:2rem;
    padding: 2%;
  }
  .white-section{
    background-color: #ffffff;
    text-align: center;
    margin:2rem;
    padding: 2%;
  }


/* Header-Stile */
.header_title {
    background-color: #f58220;
    color: #fff;
    padding: 20px;
}
.content {
    text-align: center;
    
}


/* Stil für die hero-Sektion */
.hero {
    background-image: url('#'); /* Passe den Dateipfad entsprechend deiner Bilddatei an */
    background-size: cover;
    background-attachment: fixed; /* Fixiere das Hintergrundbild beim Scrollen */
    background-position: center;
    text-align: center;
    padding: 100px 0;
    color: #fff;
}






.logo {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 3px;
    margin: auto;
    /*margin-inline-end: inherit;*/
    width: fit-content;
}

.logo img {
    max-width: 150px;
    max-height: 100px;
    height: auto;
}


/* Hover-Effekt für die Buttons */
.nav-links li button:hover {
    background: linear-gradient(to bottom, #2035f5, #339cff); /*Schatten beim Hovern*/
    color: rgb(255, 255, 255);
}

/* Stil für den aktiven Button */
.nav-button.active-button {
    /*background: linear-gradient(to bottom, #ff9933, #f58220);*/
    background: linear-gradient(to bottom, #3358ff, #20a0f5);
    color: #fff;
}

/* Hero-Stile */
.hero {
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    color: #000000;
}


/* Dienstleistungen-Stile */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.service-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
}

.service-card img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
/* Hover-Effekt für Servicekarten */
.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Ändern Sie den Schatten-Effekt nach Ihren Wünschen */
}

/* Über uns-Stile -----------------------------------------------------------------------------------------*/
#about-us {
   /* background-color: #f9f9f9; */
    padding: 60px 0;
    text-align: center;
    
}

/* Kontakt-Stile */
.contact {
    background-color: #f58220;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}


/* Footer-Stile */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
/* Hover-Effekt für Fußzeilenlinks */
footer a:hover {
    text-decoration: underline; /* Unterstrichenen Text hinzufügen */
}

footer a {
    color: rgb(199, 213, 253);
}
/* Stile für Footer-Links */
.footer-links a {
    text-decoration: none; /* Unterstreichung entfernen */
    color: #fff; /* Textfarbe anpassen */
    margin-right: 20px; /* Abstand zwischen den Links */
    font-weight: bold; /* Fettgedruckte Schrift */
}

/* Stile für Footer-Links beim Hover-Effekt */
.footer-links a:hover {
    text-decoration: underline; /* Unterstreichung beim Hover hinzufügen */
}



/*Sidebar*/

/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    /* ===== Colors ===== */
    --body-color: #efeff2;
    --sidebar-color: #FFF;
    --primary-color: #695CFE;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #707070;
    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}
body{
    min-height: 100vh;
    background-color: var(--body-color);
    transition: var(--tran-05);
}
::selection{
    background-color: var(--primary-color);
    color: #fff;
}
body.dark{
    --body-color: #18191a;
    --sidebar-color: #242526;
    --primary-color: #3a3b3c;
    --primary-color-light: #3a3b3c;
    --toggle-color: #fff;
    --text-color: #ccc;
}
/* ===== Sidebar ===== */
 .sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    padding: 10px 14px;
    background: var(--sidebar-color);
    transition: var(--tran-05);
    z-index: 100;  
}
.sidebar.close{
    width: 88px;
}
/* ===== Reusable code - Here ===== */
.sidebar li{
    height: 50px;
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.sidebar header .image,
.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
}
.sidebar .icon{
    min-width: 60px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.sidebar .text,
.sidebar .icon{
    color: var(--text-color);
    transition: var(--tran-03);
}
.sidebar .text{
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 1;
}
.sidebar.close .text{
    opacity: 0;
}
/* =========================== */
.sidebar header{
    position: relative;
}
.sidebar header .image-text{
    display: flex;
    align-items: center;
}
.sidebar header .logo-text{
    display: flex;
    flex-direction: column;
}
header .image-text .name {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}
header .image-text .profession{
    font-size: 16px;
    margin-top: -2px;
    display: block;
}
.sidebar header .image{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar header .image img{
    width: 40px;
    border-radius: 6px;
}
.sidebar header .toggle{
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(180deg);
    height: 25px;
    width: 25px;
    background-color: var(--primary-color);
    color: var(--sidebar-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--tran-05);
}
body.dark .sidebar header .toggle{
    color: var(--text-color);
}
.sidebar.close .toggle{
    transform: translateY(-50%) rotate(0deg);
}
.sidebar .menu{
    margin-top: 40px;
}
.sidebar li.search-box{
    border-radius: 6px;
    background-color: var(--primary-color-light);
    cursor: pointer;
    transition: var(--tran-05);
}
.sidebar li.search-box input{
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--primary-color-light);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    transition: var(--tran-05);
}
.sidebar li a{
    list-style: none;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--tran-03);
}
.sidebar li a:hover{
    background-color: var(--primary-color);
}
.sidebar li a:hover .icon,
.sidebar li a:hover .text{
    color: var(--sidebar-color);
}
body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text{
    color: var(--text-color);
}
.sidebar .menu-bar{
    height: calc(100% - 55px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar{
    display: none;
}
.sidebar .menu-bar .mode{
    border-radius: 6px;
    background-color: var(--primary-color-light);
    position: relative;
    transition: var(--tran-05);
}
.menu-bar .mode .sun-moon{
    height: 50px;
    width: 60px;
}
.mode .sun-moon i{
    position: absolute;
}
.mode .sun-moon i.sun{
    opacity: 0;
}
body.dark .mode .sun-moon i.sun{
    opacity: 1;
}
body.dark .mode .sun-moon i.moon{
    opacity: 0;
}
.menu-bar .bottom-content .toggle-switch{
    position: absolute;
    right: 0;
    height: 100%;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
}
.toggle-switch .switch{
    position: relative;
    height: 22px;
    width: 40px;
    border-radius: 25px;
    background-color: var(--toggle-color);
    transition: var(--tran-05);
}
.switch::before{
    content: '';
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: var(--sidebar-color);
    transition: var(--tran-04);
}
body.dark .switch::before{
    left: 20px;
}
body.dark .white-section {
    background-color: var(--body-color);
  color: var(--text-color);
  }
body.dark .service-list {
    background-color: var(--body-color);
  color: var(--text-color);
  }
body.dark .services {
    background-color: var(--body-color);
  color: var(--text-color);
  }
  body.dark .hero {
    background-color: var(--body-color);
  color: var(--text-color);
  } 
.home{
    position: absolute;
    top: 0;
    top: 0;
    left: 250px;
    height: 100vh;
    width: calc(100% - 250px);
    background-color: var(--body-color);
    transition: var(--tran-05);
}
.home .text{
    font-size: 30px;
    font-weight: 500;
    color: var(--text-color);
    padding: 12px 60px;
}
.sidebar.close ~ .home{
    left: 78px;
    height: 100vh;
    width: calc(100% - 78px);
}

body.dark .home .text{
    color: var(--text-color);
}

