:root {
    --sand: #F4EBD0;
    --ocean: #1E667E;
    --coral: #FF6B6B;
    --dark: #122620;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#logooben {
    text-align: center;
    justify-self: center;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: var(--sand);
    color: var(--dark);
}

header {
    background: rgba(255,255,255,0.9);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--ocean);
}

.hero {
    height: 40vh;
    background: linear-gradient(rgba(30,102,126,0.3), rgba(30,102,126,0.3)),
                url('img/topbg.jpeg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 102, 126, 0.3);
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-inner {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}



.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--ocean);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--coral);
}

.mittebutton {
    text-align: center;
    margin: 1em;
}

.menu-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.infoschutz {
    font-family: Arial, sans-serif;
    text-align: left;
    border: 0.5px dashed darkgray;
    padding: 1em;
    margin: 1em;
} 

.infoschutz h3 {
    text-align: center;
}

.infoschutz h4 {
    margin-bottom: 0.5em;
}

.infoschutz p {
    margin-bottom: 0.5em;
}

.infoschutztop {
    font-family: Arial, sans-serif;
    text-align: center;
    border: 0.5px dashed darkgray;
    padding: 1em;
    margin: 1em;
}



footer {
    background: var(--dark);
    color: white;
    padding: 2rem;
    text-align: center;
}

.social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social a:hover {
    color: var(--coral);
}

.legal {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal a {
    color: white;
    text-decoration: none;
}

.legal a:hover {
    color: var(--ocean);
}

@media (max-width: 768px) {
    .hero-content-inner {
        padding: 1rem;
    }
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .opening-times {
        padding: 1rem 1.5rem;
        margin-top: 1.5rem;
        max-width: 250px;
    }
    
    .opening-days p {
        font-size: 1rem;
        margin: 0.6rem 0;
    }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

@keyframes itemAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


.grow.visible {
    animation: itemAppear 0.6s ease forwards;
}