
/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@font-face {
font-family: "Righteous";
src: url("../fonts/BalooChettan-Regular.ttf");
src: url("../fonts/BalooChettan-Regular.ttf");
}

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

.divider {
    width: 2px;
    height: 35px; 
    background-color: #c8c8c8; 
    margin: 0 8px; 
}

.social-media-icons a {
    width: 35px;
    height: 35px;
    border-radius: 20%; 
    background: #0F6466; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; 
    transition: background 0.4s ease;
}

.social-media-icons a:hover {
    background: #2C3532;
}

.social-media-icons i {
    font-size: 24px;
    line-height: 35px; 
}

@media (min-width: 992px) {
    .divider {
        display: none; 
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 9999;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.navbar-custom {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; 
}

body {
     color: #666666;
     font-size: 14px;
     font-family:Poppins;
     line-height: 1.80857;
     font-weight: normal;
     overflow-x: hidden;
     margin-top: 30px;
}

.logo {
    max-width: 240px; 
    max-height: 42px;  
    display: inline-block; 
}
.logo img {
    width: 100%; 
    height: auto;
    display: block; 
}
.navbar-custom {
    background-color: #eae7e7; 
}
.navbar-light .navbar-nav .nav-link {
    color: #111111;
    font-size: 18px;
    text-transform: uppercase;
    position: relative; 
    text-decoration: none;
}

.navbar-light .navbar-nav .nav-link::after {
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: 0; 
    width: 0; 
    height: 2px; 
    background-color: #0F6466;
    transition: width 0.5s ease; 
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #0F6466;
}

.navbar-light .navbar-nav .nav-link:focus::after, .navbar-light .navbar-nav .nav-link:hover::after {
    width: 100%; 
}
/*--------------------------------------------------------------------- Unsere Projekte ---------------------------------------------------------------------*/

.titlepage_unsere_projekte {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 15px;
}

.titlepage_unsere_projekte h2 {
    font-size: 40px;
    color: #1f1f1f;
    line-height: 45px;
    font-weight: bold;
    padding: 0;
}

.titlepage_unsere_projekte p {
    color: #2a2b2a;
    display: block;
    padding-top: 5px;
}
.green {
    color: #0F6466;
}

.titlepage {
    text-align: left;
    padding-bottom: 40px;
    padding-top: 40px;
}
.titlepage h2 {
    font-size: 35px;
    color: #1f1f1f;
    line-height: 45px;
    font-weight: bold;
    padding: 0;
}

/* Container Padding */
.container {
    padding: 0 10px; /* 10px Abstand vom Bildschirmrand */
}
/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    gap: 0px; /* Abstand zwischen den Boxen */
    padding: 10px; /* Abstand vom Bildschirmrand */
}

/* Box Container */
.gallery-box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px; /* Innenabstand für Boxen */
}

/* Box Größe */
.gallery-box {
    position: relative;
    width: 100%;
    max-width: 100%; /* Maximale Breite an die verfügbare Fläche anpassen */
    aspect-ratio: 4 / 3; /* Verhältnis von Breite zu Höhe (z.B., 4:3) */
    overflow: hidden;
    border: 1px solid #ccc;
}

/* Scrollable Gallery */
.scrollable-gallery {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

/* Gallery Image */
.gallery_img {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Container aus, Überschüssiges wird abgeschnitten */
}

/* Navigation Arrows */
.nav-left, .nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #333;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.nav-left {
    left: 0;
}

.nav-right {
    right: 0;
}

/* Indicators */
.gallery-indicators {
    text-align: center;
    margin-top: 10px;
}

.gallery-indicators .indicator {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 0px;
}

.gallery-indicators .indicator.active {
    background-color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten bei mittelgroßen Bildschirmen */
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 Spalte bei kleinen Bildschirmen */
    }
}

/*--------------------------------------------------------------------- Impressum.html ---------------------------------------------------------------------*/
.impressum{
    width: 100%;
    float: left;
    background-color: #eae7e7;
    padding-bottom: 90px;
}

.impressum_Balken {
    position: relative; 
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    background-color: #2C3532;
    min-height: 180px;
    margin-bottom: 20px;
}
.text_impressum {
    color: #fff;
}

.impressum_Balken::after, 
.impressum_Balken::before {
    content: '';
    position: absolute;
    width: 100px; 
    height: 150px; 
    box-sizing: border-box;
}


.impressum_Balken::after {
    border-top: 3px solid #252525; 
    border-left: 3px solid #252525; 
    top: -20px; 
    left: -20px; 
    margin: 10px;
}

.impressum_Balken::before {
    border-bottom: 3px solid #252525; 
    border-right: 3px solid #252525; 
    bottom: -20px; 
    right: -20px; 
    margin: 10px;
}


/*--------------------------------------------------------------------- footer ---------------------------------------------------------------------*/

.social_icon {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.social_icon ul{
    margin: 0px;
    padding: 0px;
    display: inline-flex;
    list-style-type: none;
}

.social_icon li{
    float: left;
    padding-right: 5px;
}

.copyright_section {
    width: 100%;
    float: left;
    background-color: #eae7e7;
    height: auto;
    text-align: center; /* Zentriert den gesamten Inhalt */
}

.copyright_text {
    width: 100%;
    float: left;
    color: #000;
    text-align: center;
    font-size: 16px;
    margin-left: 0px;

}
.copyright_text a{
    color: #000;
}

.impressum {
    width: 100%;
    float: left;
    color: #000;
    text-align: center;
    font-size: 16px;
    margin-left: 0px;
    padding-top: 10px;
    padding-bottom: 15px;
}
.impressum a{
    color: #000;
    margin: 0 5px; /* Abstand zwischen den Links */

}
.impressum a:hover {
    color: #0F6466;
}

body, html {
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
    background-color: #eae7e7;
}

#social-media {
    width: 100%;
    display: flex;
    justify-content: center; /* Zentriert die Icons horizontal */
    align-items: center; /* Zentriert die Icons vertikal */
    margin: 0 auto; /* Zentriert den Container horizontal, falls nötig */
}

#social-media a {
    width: 35px;
    height: 35px;
    border-radius: 99%;
    background: #2C3532;
    transition: .4s ease;
}

#social-media a i {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 35px;
}

#social-media a:hover {
    background: #0F6466;
}

