/* Reset */
html, body {
    margin: 0;
    padding: 0;
}

/* BODY – fundal + font */
body {
    font-family: Verdana, sans-serif;
    font-size: 25px;
    font-weight: bold;

    background-image: url("Resources/1.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 100%;
    background-attachment: fixed;

    color: white;
    -webkit-text-stroke: 1.5px black;
}

/* HEADER */
header.top-bar {
    width: 100%;
    height: 200px;
    padding: 0;
    margin: 0;
}

.header-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-image-container {
    width: 100%;
    height: auto;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

/* TITLURI */
h1 {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 15px;
}

/* LISTE CU BIFE VERZI SUS */
.service-list {
    list-style: none;      /* fără puncte */
    padding-left: -20px;
    margin-bottom: 40px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 22px;
    padding-left: 0;       /* eliminăm spațiul pentru bife */
}

.service-list li::before {
    content: "";           /* fără bife */
}
/* LINK-URI NEGRE */
a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: black;
}
.footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    margin-top: 40px;
    position: relative;
}
/* MENIU NAVIGAȚIE */
.main-menu {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-menu a {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.1);
}

.main-menu a:hover {
    background-color: rgb(48, 235, 48);
    color: black;
}
.check {
    color: rgb(127, 221, 86); /* verdele tău */
    font-weight: bold;
    margin-right: 8px;
}