body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #C0C0C0;
	border-radius: 20px
    color: #222;
}
.director-photo {
    position: absolute;     /* pune poza peste fundal */
    top: 30px;              /* distanță față de partea de sus */
    right: 10px;            /* distanță față de dreapta */
    width: 200px;           /* dimensiunea pozei */
    height: 200px;
    border-radius: 50%;     /* face poza rotundă */
    border: 3px solid white; /* margine albă frumoasă */
    object-fit: cover;       /* încape corect în cerc */
    box-shadow: 0 0 10px rgba(0,0,0,0.5); /* umbră */
}

header {
    position: relative; /* necesar ca poza să fie poziționată corect */
}

.hero-image img {
    width: 80%;
    height: 600px;
	object-fit: center;
	border-radius: 10px;
    display: block;
	margin: 0 auto;
}


header {
    background-color: #808080;
    color: white;
    padding: 20px;
    text-align: center;
}
.back-button {
    position: absolute;
    bottom: 10px;   /* distanță față de partea de jos */
    left: 10px;     /* distanță față de partea stângă */
    font-size: 18px;
    color: #303030;
    text-decoration: none;
    font-weight: bold;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 8px;
}

h1, h2 {
    color: #582900;
}

ul {
    list-style: square;
    padding-left: 20px;
}


.contact{padding:48px 10}
.contact-form{background:var(--card);padding:20px;border-radius:12px;box-shadow:0 12px 30px rgba(7,12,14,0.06)}
.form-row{display:flex;gap:12px;margin-bottom:12px}
.form-row input{flex:1;padding:10px;border-radius:8px;border:1px solid #e6e9ea}
.contact-form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6e9ea}
.contact-form .btn-primary{margin-top:10px}


footer {
	font-size: 12px;  /* sau orice dimensiune vrei */
    text-align: center;
    background-color: #e1fdfe;
    color: #3a020d;
    padding: 10px;
    margin-top: 10px;
}