/* public/assets/css/style.css */

/* Basis-Stile */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: #FFFFF; /* Heller, pudriger Rotton */
    padding-bottom: 65px; /* Space for fixed bottom navigation */
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

html {
  height: auto;
  /* overflow-x: hidden; */ /* Removed to allow sticky positioning */
}

body {
  min-height: 100vh;
  /* overflow-x: hidden; */ /* Removed to allow sticky positioning */
}

.page-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  scroll-padding-top: var(--scroll-padding-top, 0); /* Fallback to 0 if variable not set */
}

.page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/background/mobile-background.png');
    background-size: auto;
    background-repeat: repeat;
    opacity: 0.0; /* Das Muster stark aufhellen/verblassen */
    z-index: -1;
}

footer {
  margin-top: auto;
}

/* Mobile Background Style */
@media (max-width: 768px) {
  /* No specific body or page-wrapper::before background styles needed here as they are now global */
}

/* Set background of product cards to white */
/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #C25B3A;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    opacity: 1;
    visibility: visible;
}

#splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
}

.splash-content img {
    max-width: 200px; /* Adjust as needed */
    margin-bottom: 20px;
    border-radius: 50%; /* Make the logo round */
    animation: pulse-glow 2s infinite; /* Apply the new animation */
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 169, 0, 0.7); /* #F2A900 */
    }
    70% {
        box-shadow: 0 0 10px 20px rgba(242, 169, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 169, 0, 0);
    }
}

