/* Resetare stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stiluri generale */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 10px 10px;
    color: #333;
}

/* Header */
header {
    background-color: hsla(98, 52%, 28%, 0.705);
    color: white;
    padding: 10px 20px;
}
h1{
    text-align: center;
    align-content: center;
}

.organigrama{
    padding: 10px 10px;
    align-content: center;
    align-items: center;
}

.materiale{
    padding: 50px 50px;
    align-content: center;
}

.materiale li{
    align-content: center;
    align-items: center;
}

.materiale li a{
    align-content: center;
    align-items: center;
    list-style: none;
    text-decoration: underline;
    color: hsla(97, 55%, 17%, 0.705);;
}

.materiale li a:hover{
    opacity: .7;
}


.organigrama img{
    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-radius: 35px;
  border: solid;
  border-width: .3rem;
}

b a{
    color: #333;
    font-weight: 400;
    text-decoration: none;
    border: solid;
    border-color: #333;
    padding: 9px 12px;
    border-radius: 30px;
    border-width: .1rem;
    transition: .3s;
}

b a:hover{
    color: white;
    background-color: #333;
    transition: .3s;
}


header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
    width: auto;
}

/* Navigație desktop */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4cdaf;
    transform: scale(0.7);
}

/* Buton hamburger */
.nav-toggle {
    display: none; /* Ascuns pe desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: background-color 0.3s, transform 0.3s;
}



/* Responsivitate pentru mobil */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex; /* Devine vizibil pe mobil */
    }


    .nav-links {
        display: none; /* Ascuns implicit */
        flex-direction: column;
        background-color: hsla(97, 17%, 45%, 0.918);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex; /* Devine vizibil */
    }

    .nav-links a {
        color: white;
        padding: 10px;
    }

    .nav-links a:hover {
        color: #d4cdaf;
    }
}

.materiale img{
    width: 70%;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

#hero h1 {
    margin: 20px 0;
}

#hero p {
    color: #555;
}

/* Despre Noi și Produse */
section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
}

h2 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    background: #3f4e3dc2;
    color: white;
    padding: 10px 0;
}

footer a {
    color: #d4cdaf;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
