:root {
    --gold: #df11ac; 
    --dark: #0a0a0a;
    --card: #151515;
    --text: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.no-scroll { overflow: hidden; }

.bg-animation {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: -1; 
    overflow: hidden; 
    background: radial-gradient(circle, #1a1a1a, #050505);
}

/* Dodane stałe tło z logo */
.bg-animation::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-image: url('images/logo512x512.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Logo zajmie połowę mniejszego wymiaru ekranu (responsywne) */
    opacity: 0.03; /* Przyciemnienie logo, aby tekst na stronie był dobrze widoczny */
    z-index: 0;
}

.smoke {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(223, 17, 172, 0.05) 0%, transparent 70%);
    border-radius: 50%; filter: blur(50px);
    animation: drift 20s infinite alternate;
}
.smoke1 { top: -10%; left: -10%; }
.smoke2 { bottom: -10%; right: -10%; animation-delay: -5s; }
.smoke3 { top: 40%; left: 30%; background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 60%); }

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

#navbar {
    position: fixed; top: 0; width: 100%; padding: 15px 0;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-content { max-width: 1100px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: bold; white-space: nowrap; }
.logo span { color: var(--gold); }
#navbar ul { display: flex; list-style: none; align-items: center; }
#navbar a { color: white; text-decoration: none; margin-left: 30px; font-size: 0.95rem; transition: 0.3s; font-weight: 400; }
#navbar a:hover { color: var(--gold); }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s ease;
    border-radius: 2px;
}

header { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; margin-bottom: 10px; line-height: 1.2; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.2rem; color: #bbb; }
.btn-primary { 
    display: inline-block; margin-top: 30px; padding: 12px 40px; 
    border: 1px solid var(--gold); color: var(--gold); 
    text-decoration: none; transition: 0.4s; font-weight: 600;
}
.btn-primary:hover { background: var(--gold); color: black; box-shadow: 0 0 20px var(--gold); }

section { padding: 80px 20px; max-width: 1100px; margin: auto; text-align: center; }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 20px auto; }

.about-text { font-size: 1.1rem; margin-bottom: 20px; color: #fff; }
.features { text-align: left; max-width: 800px; margin: 30px auto; display: flex; flex-direction: column; gap: 15px; }
.features p { background: rgba(255,255,255,0.02); padding: 15px; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; }
.about-summary { font-weight: 600; margin-top: 20px; color: var(--gold); }

.hours-container { max-width: 400px; margin: 50px auto 0 auto; background: var(--card); padding: 30px; border-radius: 15px; border: 1px solid #222; }
.hours-container h2 { font-size: 1.4rem; margin-bottom: 15px; color: #fff; }
.hours-list { list-style: none; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #222; font-size: 0.95rem; }
.hours-list li:last-child { border-bottom: none; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: var(--card); border-radius: 15px; overflow: hidden; border: 1px solid #222; transition: 0.4s; cursor: pointer; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 10px 20px rgba(223, 17, 172, 0.1); }
.card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
}
.card-body { padding: 25px; display: flex; flex-direction: column; height: 100%; }
.card-body h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.4rem; }
.card-body p { color: #999; font-size: 0.95rem; }

button { 
    width: 100%; padding: 15px; background: var(--gold); border: none; 
    color: black; font-weight: 600; cursor: pointer; transition: 0.3s; margin-top: 10px; border-radius: 8px;
}
button:hover { background: #b84396; }

.reveal { opacity: 0; transform: translateY(40px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--card);
    margin: 10vh auto; 
    padding: 35px 25px; 
    border: 1px solid var(--gold); 
    border-radius: 20px;
    width: 92%; 
    max-width: 500px; 
    text-align: center;
    position: relative; 
    animation: modalFadeIn 0.4s; 
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden; 
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}
.close-button { position: absolute; top: 15px; right: 20px; color: var(--gold); font-size: 30px; cursor: pointer; line-height: 1; }

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-product-list { list-style: none; padding: 0; margin-top: 20px; text-align: left; }
.modal-product-list li { padding: 12px 15px; border-bottom: 1px solid #222; color: var(--text); transition: 0.3s; font-size: 1rem; }
.modal-product-list li:last-child { border-bottom: none; }
.modal-product-list li:hover { color: var(--gold); padding-left: 25px; background: rgba(223, 17, 172, 0.05); }

#age-deny:hover { background: #444; }
footer { padding: 40px 20px; text-align: center; font-size: 0.85rem; color: #555; border-top: 1px solid #111; }

.modal-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(223, 17, 172, 0.3);
}

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 30px; }
.contact-card {
    background: var(--card); border: 1px solid #222; border-radius: 15px; padding: 25px 20px;
    text-decoration: none; color: var(--text); transition: 0.4s ease; display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.contact-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 5px 20px rgba(223, 17, 172, 0.15); }
.contact-icon { font-size: 2.2rem; margin-bottom: 10px; transition: 0.3s; }
.contact-card h3 { color: var(--gold); margin-bottom: 5px; font-size: 1.2rem; }
.contact-card p { font-size: 0.85rem; color: #999; word-break: break-all; text-align: center; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1rem; }
    .btn-primary { padding: 10px 30px; margin-top: 20px; }
    section { padding: 60px 15px; }
    .features { padding: 0 10px; }
    .menu-toggle { display: flex; }
    
    #navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        border-bottom: 1px solid #222;
    }
    #navbar ul.active { display: flex; }
    #navbar a { margin: 12px 0; font-size: 1.1rem; width: 100%; text-align: center; display: block; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 15px; }
    .modal-content { margin: 15vh auto; width: 95%; padding: 25px 15px; }
    .close-button { top: 10px; right: 15px; font-size: 28px; }
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

