/*
 Theme Name:   oceanwp-child        
 Template:     oceanwp
 Version:      1.0
*/

/* 🔥 NIE RUSZAMY globalnych wrapperów OceanWP */
body {
    background-color: #fff;
}

/* Sticky menu */
.sticky-section {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* 🔥 LOADER (kurtyna – bez zmian) */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    pointer-events: none;
}

.loader-left,
.loader-right {
    width: 50%;
    height: 100%;
    background: #000;
    transition: transform 1.5s ease;
}

.loader-left {
    transform: translateX(0);
}

.loader-right {
    transform: translateX(0);
}

.page-loaded .loader-left {
    transform: translateX(-100%);
}

.page-loaded .loader-right {
    transform: translateX(100%);
}


/* 🔥 MENU STYLE (POPRAWIONE + MNIEJSZE + AMATIC) */

/* Font */
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');

/* Kontener menu */
.menu-day-list {
    list-style: none;
    padding: 15px;
    margin: 30px auto; /* 🔥 trochę odstępu od góry */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Dania */
.menu-day-list li {
    font-family: 'Amatic SC', cursive;
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: 4px 0;
    padding: 4px 8px;
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
}

/* Separator */
.menu-day-list li::after {
    content: "✿";
    color: #ff6600;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin: 6px auto 0 auto;
    width: 70%;
    border-bottom: 1px dashed #ddd;
    line-height: 0.1em;
}

/* Ostatni element */
.menu-day-list li:last-child::after {
    content: none;
    border: none;
}

/* Hover */
.menu-day-list li:hover {
    color: #ff6600;
    transform: scale(1.03);
    transition: 0.2s;
}

.eael-simple-menu-toggle-text {
    display: none !important;
}

html, body {
    overflow-x: hidden;
}
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}

/* IE */
body {
    -ms-overflow-style: none;
}