body {
    background: linear-gradient(135deg, #6A0572, #2E2E2E);
    font-family: 'Outfit', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

.luna-proiect {
    padding: 5rem 10%;
}

.luna-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.luna-text {
    flex: 1 1 350px;
    max-width: 500px;
}

.luna-text h1 {
    font-size: 2.5rem;
    color: #A66CFF;
    margin-bottom: 1rem;
}

.luna-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.luna-lista {
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.luna-lista li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    list-style: square;
    color: #f0f0f0;
}

.butoane-navigare {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 4rem auto 2rem;
    gap: 1rem;
}

.btn-nav {
    flex: 1;
    text-align: center;
    background: linear-gradient(to right, #a66cff, #4DB6AC);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn-nav:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #4DB6AC, #a66cff);
}

.luna-imagini {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.img-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-glass:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(77, 182, 172, 0.3);
}

.img-glass img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block; }


.luna-imagini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 2rem;
}

.descriere-img {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: #e5e5e5;

}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

/*Logo mare*/

.luna-logo {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.luna-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.zoom {
    display: block;
    cursor: zoom-in;
}

.zoom img {
    transition: transform 0.3s ease;
}

.zoom:hover img {
    transform: scale(1.03);
}

/*Responsive*/

@media screen {

    
}

