: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: 93vh;
    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;
}

.opening-times {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem auto 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.opening-days p {
    color: white;
    margin: 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.menu-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--ocean);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.active {
    background: var(--coral);
}

.tpbtninmenu {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--ocean);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.5em;
}

.tpbtn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--ocean);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.8em;
}

.arrowsimg {
    text-align: center;
    margin: 0%;
}


.toppingtoggle {
    text-align: center;
    /* margin-bottom: 2em; */
    padding: 2em;
    background: var(--dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 280px));
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto;
    flex-shrink: 0;
}

.menu-item h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}


.menu-item .description {
    font: italic;
    font-size: 0.9rem;
    color: #b4b4b4;
    margin-top: 0.1rem;
}

#toppings {
    display: none;
  }
  
  #toppings.visible {
    display: block;
  }


.gallery {
    padding: 4rem 2rem;
    background: var(--ocean);
    color: white;
}



.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grow:hover {
    transform: scale(1.03);
}

.slideshow-container {
    position: relative;
    max-width: 80%;
    margin: 2rem auto;
    height: 60vh;
}

.slideshow-inner {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.slideshow-arrow:hover {
    background: rgba(255,255,255,0.8);
}

.next { right: 0; }
.prev { left: 0; }

.steps {
    padding: 4rem 2rem;
    background: var(--sand);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.step {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}




.step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}


.location {
    padding: 4rem 2rem;
    text-align: center;
}

.map-container {
    margin: 2rem auto;
    max-width: 800px;
}

iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

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);
}


/* ─── Cookie Banner ───────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--dark);
    color: white;
    padding: 1rem;
    display: none; /* Standardmäßig versteckt */
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  }
  .cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-banner p {
    flex: 1 1 60%;
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .cookie-banner a {
    color: var(--coral);
    text-decoration: underline;
  }
  .cookie-banner .cookie-buttons {
    flex: 1 1 30%;
    text-align: right;
  }
  .cookie-banner .btn {
    background: var(--coral);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 0.5rem;
  }
  .cookie-banner .btn-reject {
    background: transparent;
    border: 1px solid white;
    color: white;
    margin-left: 0;
  }
  .cookie-banner .btn-reject:hover {
    background: rgba(255,255,255,0.2);
  }
  
  /* ─── Map Placeholder ────────────────────────────────────────────── */
  .map-placeholder p {
    font-size: 1rem;
    color: var(--dark);
  }


/* ─── Map Placeholder ────────────────────────────────────────────── */
.map-placeholder p {
    font-size: 1rem;
    color: var(--dark);
  }
  
  /* ─── Cookie Banner ───────────────────────────────────────────────── */
  .cookie-banner {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: var(--dark);
    color: white;
    padding: 1rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  }
  .cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-banner p {
    flex: 1 1 60%;
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .cookie-banner a {
    color: var(--coral);
    text-decoration: underline;
  }
  .cookie-banner .cookie-buttons {
    flex: 1 1 30%;
    text-align: right;
  }
  .cookie-banner .btn {
    background: var(--coral);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 0.5rem;
  }
  .cookie-banner .btn-reject {
    background: transparent;
    border: 1px solid white;
    color: white;
    margin-left: 0;
  }
  .cookie-banner .btn-reject:hover {
    background: rgba(255,255,255,0.2);
  }



@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); }
}

.menu-item.visible {
    animation: itemAppear 0.6s ease forwards;
}

.grow.visible {
    animation: itemAppear 0.6s ease forwards;
}