/* Sections */
section {
    scroll-snap-align: start;
    min-height: 60vh;           /* smaller than full screen */
    padding: 80px 20px;         /* spacing around content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Optional dark overlay */
section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.15); /* lighter overlay */
    z-index: 0;
}

/* Ensure content is above overlay */
section > * {
    position: relative;
    z-index: 1;
}

/* Section backgrounds */
#acasa {
    background-image: url('pictures/about.jpg');
    padding-top: 1rem;
}

#despre-noi {
    background-image: url('pictures/despre.jpg');
    background-color: var(--main-color);
}

#acte {
    background-image: url('pictures/acte si proceduri.jpg');
}

#traduceri {
    background-image: url('pictures/about.jpg');
}

#contact {
    background-image: url('pictures/law.jpg');
}

/* Restore default text color unless overridden */
section p, section h1, section h2, section h3, section span, section a {
    color: inherit;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    section {
        min-height: 50vh;
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    section {
        min-height: 40vh;
        padding: 40px 15px;
    }
}

/* Optional: smooth scroll container */
html {
    scroll-behavior: smooth;
}

/* Example heading spacing */
section h1, section h2, section h3 {
    margin-bottom: 20px;
    font-family: 'Trajan Pro', 'Cinzel', serif;
}

/* Example paragraph spacing */
section p {
    max-width: 800px;
    line-height: 1.6;
}

