/* 1. Reset de bază */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;          /* <– adăugat */
    font-family: Arial, sans-serif;
}

/* HEADER SUS */
.header-container {
    position: relative;
    margin: 0;
    padding: 0;
}

/* <– IMPORTANT: imaginile devin block, nu mai lasă spațiu sub ele */
.header-img,
.background-img {
    display: block;
}

.header-img {
    width: 100%;
    height: auto;
}

.title-overlay {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 52px;
    font-weight: bold;
    color: black;
}

/* MENIU */
.navbar {
    background: #ddd;
    border-top: 2px solid #777;
    border-bottom: 2px solid #777;
    margin: 0;
    padding: 0;
	z-index: 5;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar li {
    position: relative;
}

.navbar li a, .dropbtn {
    display: block;
    padding: 12px 30px;
    text-decoration: none;
    color: black;
    font-size: 20px;
}

.navbar li a:hover {
    background: #bbb;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background: #eee;
    min-width: 260px;
    z-index: 10;
    border: 1px solid #888;
}

.dropdown-content a {
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ZONA DE JOS CU MICROSCOAPUL */
.content-area {
    position: relative;
    text-align: center;
    height: 700px;
    margin: 0;          /* <– adăugat, să nu existe margini implicite */
    padding: 0;         /* <– adăugat */
	boder: 0;
	z-index: 1;
	top: -40px;
}

.background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    position: absolute;
    top: 0;
    left: 0;
}

.content-box {
    position: relative;
    margin-top: 40px;
    padding: 100px;
    font-size: 26px;
    font-weight: bold;
}
