body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #C0C0C0;
	border-radius: 10px
    color: #222;
}
header {
    background-color: #808080;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}



.director-photo {
    position: absolute;     /* pune poza peste fundal */
    top: 20px;              /* distanță față de partea de sus */
    right: 10px;            /* distanță față de dreapta */
    width: 200px;           /* dimensiunea pozei */
    height: 300px;
    border-radius: 50%;     /* face poza rotundă */
    object-fit: cover;       /* încape corect în cerc */
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* umbră */
	 z-index: 1;         /* poza directorului în spate */
}
.director-photo-left {
    position: absolute;
    top: 20px;
    left: 10px;
    width: 200px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.hero-image img {
    width: 450px;
    height: auto;
    border-radius: 10px;
}

nav a {
    color: #303030;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
}

h1, h2 {
    color: #0d6a9a;
}

ul {
    list-style: square;
    padding-left: 20px;
}


footer {
	font-size: 12px;  /* sau orice dimensiune vrei */
    text-align: center;
    background-color: #e1fdfe;
    color: #3a020d;
    padding: 10px;
    margin-top: 10px;
}