
.hamburger-menu { display: none; }
@media (max-width: 1068px) {
    .hamburger-menu { display: block; }
    .nav-links { display: none; }
    .nav-links.mobile-menu { display: block; }
    .desktop-logo { display: none; }
    .mobile-logo { display: block; }
}
@media (min-width: 1069px) {
    .desktop-logo { display: block; }
    .desktop-logo { max-width: 400px; }
    .mobile-logo { display: none; }
}

@media (max-width: 1300px) {
    .desktop-logo { max-width: 200px; }
}

.shadow-green {
    box-shadow: 0 4px 6px -1px rgba(131, 197, 87, 0.4), 0 2px 4px -1px rgba(131, 197, 87, 0.3);
}
.max-w-screen-custom {
    max-width: 1400px;
}
body, html {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}
footer {
    background-color: #83C557;
    color: white;
    text-align: center;
    padding: 1rem;
}
.bg-section {
    position: relative;
    overflow: hidden;
}
.bg-image {
    position: absolute;
    width: 5rem;
    height: 5rem;
    background-repeat: no-repeat;
    background-size: contain;
    right: 2rem;
    bottom: 3rem;
    transition: transform 0.1s ease-out;
}
.bg-green {
    background-color: #e6f3dd;
}
.bg-green .bg-image {
    background-image: url('../img/logo_gemeinschaftspraxis_weiss.png') !important;
}
.bg-white .bg-image {
    background-image: url('../img/logo_gemeinschaftspraxis_gruen.png');
}

.green-text {
    color: #83C557;
}

.custom-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-small {
    height: 40px;
    width: 40px;
}

/* Scroll Container Styles */
.relative {
    overflow: hidden;
}
#scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#scroll-container::-webkit-scrollbar {
    display: none;
}

/* Image Overlay Styles */
#image-overlay {
    display: none;
}
#image-overlay.hidden {
    display: none;
}
#image-overlay:not(.hidden) {
    display: flex;
}

/* Animation Styles */
.section-highlight {
    transition: background-color 0.5s ease-in-out;
}


#mobile-menu.active {
    display: block;
}

#mobile-menu.active .bg-white {
    transform: translateX(0);
}

.bg-green {
    background-color: #e6f3dd;
}

@media (min-width: 1069px) {
    #mobile-menu {
        display: none !important;
    }
}

.green-text {
    color: #83C557;
  }