body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: white;
    overflow-x: hidden;
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
}

.hamburger .linie {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

#meniu-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

#meniu-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

#meniu-links li a.active {
    color: #A66CFF;
}

.despre-wrapper {
    display: flex;
    flex-direction: column;
    padding: 6rem 5% 4rem;
    position: relative;
    z-index: 1;
}

.despre-text {
    max-width: 800px;
    margin: auto;
    margin-bottom: 4rem;
    text-align: justify;
}

.despre-text h1 {
    font-size: 3rem;
    color: #d4a3ff;
    margin-bottom: 1rem;
    text-align: center;
}

.despre-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.final {
    text-align: center;
}

.autor-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.autor-box .semnatura img {
    height: 50px;
    background: white;
    padding: 0.3rem 1rem;
    border-radius: 10px;
}

.autor-box .poza-cu-mine img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

/* === INFO GRID === */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-info {
    background: rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(8px);
    /* pentru Safari */
    backdrop-filter: blur(8px);
    /* pentru restul */
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Fallback pentru browsere fără suport pentru backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
    .card-info {
        background-color: rgba(255, 255, 255, 0.12);
    }
}

.card-info h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #A66CFF;
}

.card-info ul {
    list-style: none;
    padding: 0;
}

.card-info ul li {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

/* === FOOTER === */
footer {
    background: #121212;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #meniu-links {
        display: none;
        flex-direction: column;
        background: #1a1a1a;
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 1rem;
        border-radius: 10px;
    }

    #meniu-links.show {
        display: flex;
    }
}