body {
    background: linear-gradient(135deg, #6A0572, #2E2E2E);
    font-family: 'Outfit', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

.lumina-proiect {
    padding: 5rem 10%;
}

.lumina-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.lumina-text {
    flex: 1 1 350px;
    max-width: 500px;
}

.lumina-text h1 {
    font-size: 2.5rem;
    color: #A66CFF;
    margin-bottom: 1rem;
}

.lumina-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.lumina-lista {
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.lumina-lista li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    list-style: square;
    color: #f0f0f0;
}

.butoane-navigare {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-nav {
    background: linear-gradient(45deg, #A66CFF, #6A0572);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: linear-gradient(45deg, #6A0572, #A66CFF);
    transform: scale(1.05);
}

.lumina-imagini {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.img-proiect {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.img-proiect:hover {
    transform: scale(1.02);
}

.meniu-card-glass {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.meniu-card-glass h3 {
    font-size: 1.8rem;
    color: #d4a3ff;
    margin-bottom: 1rem;
}

.coperta-meniu {
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.coperta-meniu:hover {
    transform: scale(1.02);
}

.coperta-meniu img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.coperta-meniu p {
    margin-top: 0.7rem;
    font-size: 1rem;
    color: #f0f0f0;
}

.galerie-meniu {
    display: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.galerie-meniu img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.galerie-meniu img:hover {
    transform: scale(1.03);
}

/* Afișare galerie când se apasă pe copertă */
.galerie-meniu.show {
    display: grid;
}

/* Animație fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    -webkit-backdrop-filter: 6px;
    backdrop-filter: blur(6px);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 40px;
    right: 65px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #A66CFF;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(166, 108, 255, 0.6);
}

.lightbox-prev {
    left: 50px;
}

.lightbox-next {
    right: 50px;
}