body {
    margin: 0;
    padding: 0;
    background-image: url("poze/afara.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 800px;
    margin: 100px auto;
    background-color: rgba(255, 255, 255, 0.84);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

.lista-servicii {
    list-style-type: square;
}

.lista-contact {
    list-style-type: none;
    padding: 0;
}

    .lista-contact a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
    }

.galerie-poze {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .galerie-poze img {
        width: 100px;
        height: auto;
        cursor: pointer;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

        .galerie-poze img:hover {
            transform: scale(1.05);
        }

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
        box-shadow: 0 0 20px #fff;
        cursor: pointer;
    }
