/* mobile.css – für Bildschirme bis 768px Breite */

/* ---------------------- Allgemeine Einstellungen ---------------------- */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fca55e;
    background-color: #0a0a0a;
    text-shadow: 0 0 4px #fca55e, 0 0 8px #fca55e;
}

/* ---------------------- Header ---------------------- */
header {
    padding: 0.5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-small {
    width: 80px; /* Logo kleiner für mobile */
    height: auto;
}

.hamburger {
    display: block;
    cursor: pointer;
    color: #fca55e;
    font-size: 1.5rem;
    z-index: 100;
}

/* ---------------------- Navigation ---------------------- */
.desktop-nav {
    display: none;
    flex-direction: column;
    gap: 1em;
    margin-top: 0.5em;
    width: 100%;
}

.desktop-nav li {
    border-bottom: 1px solid #333;
    padding: 0.5em 0;
    font-size: 1rem;
    text-align: center;
}

.desktop-nav a {
    color: #fca55e;
    font-weight: bold;
    text-shadow: 0 0 3px #fca55e;
}

/* Navigation anzeigen, wenn Hamburger-Menü geöffnet ist */
body.menu-open .desktop-nav {
    display: flex;
}

/* ---------------------- Main Section ---------------------- */
.main {
    padding: 1em 1em;
    height: 100vh;
    justify-content: center;
    text-align: center;
}

.bubble-logo {
    width: 70%;  /* Logo kleiner für mobile Geräte */
    max-width: 300px; /* Maximalgröße des Logos */
    animation: float 6s ease-in-out infinite;
}

/* ---------------------- Scroll Icon ---------------------- */
.scroll-down {
    margin-top: 1.5em;
    animation: bounce 2s infinite;
    color: #fca55e;
}

/* ---------------------- Galerie ---------------------- */
.gallery {
    flex-direction: column;
    gap: 1em;
    display: flex;
    align-items: center;
}

.gallery img {
    width: 80%;  /* Galerie-Bilder kleiner */
    max-width: 250px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px #fca55e;
}

/* ---------------------- QR Code ---------------------- */
.instagram img {
    width: 120px;  /* QR-Code kleiner */
    margin-top: 1em;
}

/* ---------------------- Cookie Banner ---------------------- */
.cookie-banner {
    font-size: 0.8em;  /* Kleinere Schriftgröße */
    padding: 0.5em;
    background-color: #000;
    color: #fca55e;
    text-shadow: 0 0 5px #fca55e;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

.cookie-banner button {
    margin-left: 1em;
    padding: 0.5em 1em;
    background-color: #fca55e;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* ---------------------- Animationen ---------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }  /* Dezente Bewegung */
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------------------- Abschnitt: Bestellen, Instagram ---------------------- */
.bestellen h2,
.instagram h2 {
    color: #fca55e;
    text-shadow: 0 0 5px #fca55e;
}
