:root {
    --soft-black: #262626;
    --light-grey: #D9D9D9;
    --light-wheat: #EEECE1;
    --dark-sage: #707B6D;
    --powdery-pink: #f0e6e2;
    --dark-blue: #2c3e50;
}
 /*#ede2de */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: white;
    color: var(--soft-black);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    background: transparent;
    color: black;
    text-align: left;
}

/* =========================
   NAVBAR
   ========================= */

.navbar-wrapper {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    width: 95%;
    margin: 0 auto;
    z-index: 1000;
    background-color: rgba(238, 226, 223, 0.5);
    backdrop-filter: blur(1px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: opacity 0.4s cubic-bezier(0.5, 1.2, 0.5, 1),
    transform 0.4s cubic-bezier(0.5, 1.2, 0.5, 1);
}

.navbar-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    top: 1rem;
    bottom: auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    width: 100%;
    box-sizing: border-box;
    gap: 2rem;
    min-width: 0;
}

.nav-toggle {
    display: none;
}

.logo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
}

.logo a {
    text-decoration: none;
    color: black;
    font-size: 1.5rem;
}

.nav-logo {
    height: 1.4rem;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    white-space: nowrap;
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    overflow: visible;
}

.menu a {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.menu a:hover {
    color: var(--dark-sage);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-black {
    border: 2px solid black;
    margin-top: 5%;
    color: black;
    font-size: 1rem;
}

.btn-black:hover {
    background-color: black;
    color: var(--light-grey);
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* footer */
footer {
    background: var(--powdery-pink);
    text-align: center;
    padding: 1rem;
    height: 80vh;
}

.logo {
    animation: fadeInFromTop 3s ease-out forwards;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    color: black;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.footer-left {
    line-height: 1.1;
    margin-left: 2rem;
    animation: fadeInFromLeft 2s ease-out forwards;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 0;
}

.footer-left h2 {
    margin-bottom: 1%;
    font-family: 'Playfair Display', serif;

}

.footer-left p {
    margin-top: 0;
    line-height: 1.3;
    font-family: 'Lato', sans-serif;
    font-weight: 300;

}
.brand-logo{
    width: 90vw;
    height:auto;
}

.footer-bottom {
    margin-top: 3%;
    margin-bottom: 0;
    display: flex;
    justify-content: right;
    gap: 3rem;
    color: black;
}

.impressum a,
.datenschutz a {
    text-decoration: none;
    color: black;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--soft-black);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 5%;
        background: rgba(238, 226, 223, 0.95);
        border-radius: 10px;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .menu.active {
        display: flex;
    }

    .menu a {
        margin: 0.5rem 0;
        font-size: 1rem;
    }
}

.main-brand-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    object-fit: cover;

}

/*.brand-video {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    width: 100%;*/
/*    height: auto;*/
/*    object-fit: cover;*/
/*    mix-blend-mode: soft-light;*/
/*    opacity: 0.98;*/
/*    filter: brightness(2.02) contrast(0.98);*/
/*    clip-path: inset(0.3px);*/
/*}*/