/* Elimină marginile implicite ale paginii */
html, body {
    margin: 0;
    padding: 0;
}

/* BODY – text centrat și negru */
body {
    font-family: Verdana, sans-serif;;
    background-image: url("Resources/1.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 70%;
    background-attachment: fixed;

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

/* HEADER FULL WIDTH */
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 DIN BODY */
h1 {
    font-size: 36px;      /* MĂRIT */
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

h2 {
    font-size: 28px;      /* MĂRIT */
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

/* PARAGRAFE */
p {
    font-weight: bold;
    font-family: Verdana, sans-serif;;
    font-size: 24px;      /* MĂRIT */
    line-height: 1.7;

    max-width: 900px;
    margin: 0 auto 20px auto;
}

/* LISTE */
.service-list {
    font-family: Verdana, sans-serif;;
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 22px;      /* MĂRIT */
    line-height: 1.6;
    padding-left: 0;
}

.service-list li {
    list-style-type: none;
    margin-bottom: 8px;
}
.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;
}