

:root {
    /* Culori principale */
    --orange: #ff6b00;
    --orange-light: #ff8534;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #333333;

    /* Alte culori (opțional) */
    --dark-gray: #2e2e2e;
    --light-gray: #f2f2f2;

    /* Tipografii */
    --font-primary: Arial, sans-serif;

    /* Timp de tranziție & border radius */
    --transition-speed: 0.4s;
    --radius: 8px;
}




/* ===================== FOOTER ===================== */
footer {
    background-color: var(--dark-gray);
    padding: 3rem 2rem;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}
.footer-brand {
    flex: 1 1 220px;
    min-width: 200px;
}
.footer-brand h3 {
    color: var(--orange);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.85;
}
.footer-links {
    flex: 1 1 180px;
    min-width: 180px;
}
.footer-links h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-size: 0.95rem;
    opacity: 0.85;
}
.footer-links a:hover {
    color: var(--orange);
    opacity: 1;
}
.footer-contact {
    flex: 1 1 240px;
    min-width: 200px;
}
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.85;
    font-size: 0.95rem;
    gap: 0.5rem;
}
.footer-contact .contact-item i {
    font-size: 1.1rem;
    color: var(--orange);
}
.footer-social {
    flex: 1 1 180px;
    min-width: 180px;
    text-align: center;
}
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}
.social-icons a:hover {
    color: var(--orange);
}
.footer-bottom {
    width: 100%;
    text-align: center;
    color: var(--white);
    opacity: 0.6;
    margin-top: 1rem;
    font-size: 0.8rem;
}
@media(max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-social {
        text-align: left;
    }
}
