﻿/* Nightclub Theme */
.theme-Nightclub {
    background: radial-gradient(circle at center, #0b0014 0%, #000 80%);
    color: #e0d7ff;
    font-family: 'Poppins', sans-serif;
}

/* Headings — glowing neon pinks & purples */
.theme-Nightclub h1,
.theme-Nightclub h2,
.theme-Nightclub h3,
.theme-Nightclub h4,
.theme-Nightclub h5,
.theme-Nightclub h6 {
    font-family: 'Orbitron', sans-serif;
    color: #ff4df0;
    text-shadow: 0 0 10px #ff4df0, 0 0 20px #ff00c8;
    letter-spacing: 1px;
    /*animation: neonFlicker 3s infinite alternate;*/
}

.theme-Nightclub h3 {
    animation: neonPulse 2s infinite alternate;
}

/* Neon flicker effect — realistic “warming up” look */
@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #ff4df0, 0 0 20px #ff00c8, 0 0 30px #ff00c8, 0 0 40px #ff00ff;
    }

    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

/* Body text — softer glow */
.theme-Nightclub body,
.theme-Nightclub p,
.theme-Nightclub li,
.theme-Nightclub div,
.theme-Nightclub a,
.theme-Nightclub input,
.theme-Nightclub textarea,
.theme-Nightclub select,
.theme-Nightclub label,
.theme-Nightclub th,
.theme-Nightclub td {
    color: #cfc3ff;
    font-family: 'Poppins', sans-serif;
}

/* Category lines — glowing blue neon */
.theme-Nightclub .category-line,
.theme-Nightclub .decorative-line,
.theme-Nightclub .decorative-line-last {
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 2px;
    box-shadow: 0 0 10px #00ffff;
}

/* Neon accents for icons and ingredients */
.theme-Nightclub .decorative-icon,
.theme-Nightclub .decorative-icon-last,
.theme-Nightclub .ingredient-list-item::before {
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
    background-color: #010001
}

.theme-Nightclub .ingredient-list-item::before {
    color: #ffb8ff;
    text-shadow: 0 0 5px #ff80e1;
}

/* Menu items — glowing separation */
.theme-Nightclub .menu-item {
    border-bottom: 1px solid rgba(255, 0, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-Nightclub .menu-item:last-of-type {
    border-bottom: none;
}

/* Cocktail name — bold electric color */
.theme-Nightclub .cocktail-name {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

/* Cocktail description */
.theme-Nightclub .cocktail-description {
    color: #e0d7ff;
    font-size: 0.95rem;
}

/* Ingredients section — subtle purple glow */
.theme-Nightclub .ingredients-list li,
.theme-Nightclub .ingredient {
    color: #ffb8ff;
    text-shadow: 0 0 5px #ff80e1;
}

/* Ingredient separators — glowing dots */
.theme-Nightclub .ingredient:not(:last-child)::after {
    content: "•";
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff;
}

/* Category headers */
.theme-Nightclub .category-name {
    color: #ff4df0;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px #ff00c8;
    animation: neonFlicker 3s infinite alternate;
}

/* Decorative icons */
.theme-Nightclub .decorative-icon::before {
    content: "★";
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.theme-Nightclub .decorative-icon-last::before {
    content: "★";
    color: #ff4df0;
    text-shadow: 0 0 10px #ff00ff;
}

/* Cocktail images — glowing border */
.theme-Nightclub .cocktail-image-container {
    border: 2px solid #00ffff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Preparation text */
.theme-Nightclub .preparation-text {
    color: #cfc3ff;
    font-style: italic;
}

/* Subtle neon animation */
@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 12px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #00ffff, 0 0 40px #00ffff;
        filter: brightness(1);
    }

    50% {
        text-shadow: 0 0 25px #ff4df0, 0 0 40px #ff00ff, 0 0 50px #00ffff, 0 0 50px #00ffff;
        filter: brightness(1);
    }
}


.theme-Nightclub h1,
.theme-Nightclub .menu-title {
    animation: neonFlicker 3s infinite alternate;
}

/* Scrollbar for dark mode */
.theme-Nightclub ::-webkit-scrollbar {
    width: 8px;
}

.theme-Nightclub ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ffff, #ff00ff);
    border-radius: 4px;
}

.theme-Nightclub ::-webkit-scrollbar-track {
    background: #0b0014;
}