.bg {
    min-height: 35vh;
    background-image: url('../images/header.png');
    background-size: cover;
    background-position: bottom center;
    display: flex; /* Für die Zentrierung des Containers */
    position: relative;
}

.header {
    display: flex;
    align-items: center;      /* Vertikale Zentrierung */
    justify-content: center;  /* Horizontale Zentrierung */
}

.bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.bg .container {
    height: 100%; /* Wichtig für vertikale Zentrierung */
    position: relative;
    z-index: 2;
}
.sticky-top {
    transition: all 0.25s ease-in;
}

.stuck .navbar.sticky-top {
    background-color: #222 !important;
    padding-top: .8rem !important;
    padding-bottom: .8rem !important;
}

.text-mood {
    color: #f38e47;
}

.text-trip {
    color: #5bb1c9;
}

.header-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #7fc1d6;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    pointer-events: auto;
    transition: all 0.3s ease-in-out;
}

.bg-mood {
    background-color:#f5be97  !important;
}
.header.bg .container {
    height: 100%; /* Macht den Container so hoch wie .header.bg */
}

/* Dropdown Hintergrund farbig + Text weiß */
.navbar .dropdown-menu {
    background-color: #f5be97 !important; /* deine bg-mood Farbe */
    border: none;
    padding: 0;
}

/* Dropdown Items */
.navbar .dropdown-item {
    color: #ffffff !important;
    padding: 10px 16px;
}

/* Hover Effekt */
.navbar .dropdown-item:hover {
    background-color: rgba(0,0,0,0.15) !important;
    color: #ffffff !important;
}

/* Trenner unsichtbar */
.navbar .dropdown-divider {
    border-color: rgba(255,255,255,0.2);
}


@media (max-width: 768px) {
    .bg {
        min-height: 15vh;
    }
}

