.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
}
.content {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
}
img {
    max-width: 100%;
    height: auto;
}
.navbar {
    padding: 0.2rem 1rem;
}
.navbar-nav {
    flex-direction: row;
    justify-content: center;
    width: 100%;
}
.navbar-brand {
    height: 100px;
    width: auto;
    margin-left: 300px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
    display: flex;
}
.navbar-nav .nav-item {
    margin-right: 15px;
    font-weight: bold;
}
.navbar-nav .nav-link {
    color: #ffc343; 
    font-weight:bold;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.navbar-nav .nav-link.active {
    color: rgb(227, 137, 40) !important;
    font-weight: bolder;
    border-radius: 5px;
}
.navbar-nav .nav-link:hover {
    color: rgb(227, 137, 40) !important;
    font-weight: bold;
    border-radius: 5px;
}
a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
}
a:hover {
    color: rgb(227, 137, 40);
    border-bottom: 2px solid rgb(227, 137, 40);
    text-decoration: none;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
body {
    padding-top: 20px;
    background-color: #fffcf8;
}
.home-page .home-image {
    display: block;
    margin: 0 auto;
     max-width: 40%;
}
.btn-custom {
    background-color: #39407e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.btn-custom:hover {
    background-color: #bcb11a;
    color: #fff;
}
/* New styles for full-width header image */
.header-image {
    width: 100%;
    overflow: hidden;
}
.full-width-image {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
}

.top-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.divider {
    width: 4px;                 /* thin vertical line */
    background-color: #c07814;     /* line color */
    align-self: stretch;        /* make it fill the height of the row */
}


.angebot {
            
    display: flex;
    flex-direction: column;
    align-items: center;
     gap: 10px; 
}
h1, h2, h3, h4, h5, h6 {
    color: rgb(227, 137, 40);
    font-weight: bold;
}
.konstruktion-image-a {
       max-width: 60%;
       height: auto;
}
.konstruktion-image-b {
       max-width: 60%;
       height: auto;
}
.konstruktion-image-c {
       max-width:60%;
       height: auto;
}
.segmentierung-image-a {
       max-width:80%;
       height: auto;
}
.meme-image {
    max-width: 20%;
    height: auto;
    margin-left: 330px;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
       opacity: 1;
    z-index: 1;
}
.slide img {
    width: 100%;
    height: auto;
    
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
    user-select: none;
    background-color: rgba(0,0,0,0.4);
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.fade {
    animation: fadeEffect 1s;
}
@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}
