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

/* ========================= */
/*       BODY + FUNDAL       */
/* ========================= */
body {
    font-family: Verdana, sans-serif;;
    font-size: 20px;
    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;
}

.content {
    text-align: left;
    padding-left: 10px;
    padding-right: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

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

/* ========================= */
/*      LISTE FĂRĂ BIFE      */
/* ========================= */
.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 22px;
}

/* ========================= */
/*          GALERIE          */
/* ========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ========================= */
/*          LIGHTBOX         */
/* ========================= */
.lightbox {
    display: none;              /* foarte important */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);

  
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin: auto;   /* FORȚEAZĂ CENTRAREA */
}

/* BUTON ÎNCHIDERE */
.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

/* SĂGEȚI */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    padding: 20px;
    user-select: none;
    transform: translateY(-50%);
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    color: #00ff00;
}

/* ========================= */
/*          LINK-URI         */
/* ========================= */
a {
    color: white;
    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;
}