/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #be0709;
    padding: 20px;
}

.header-logo {
    max-width: 125px;
    height: auto;
}

.header-titlu {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    margin-left: 15px;
}

/* Navigation Bar Styles */
#nav-bar {
    background-color: #333;
    margin-bottom: 20px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list li a {
    color: #f6f6f6;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.nav-list li a:hover {
    background-color: #be0709;
    color: #fff;
}

/* Subtitle Section */
.container-subtitlu {
    text-align: center;
    margin-top: 10px;
}

.subtitlu {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subtitlu-imagine {
    margin-top: 5px;
    max-width: fit-content;
    height: 480px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subtitlu-imagine:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #f6f6f6;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #be0709;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-logo {
        margin-bottom: 10px;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-list li {
        margin-bottom: 10px;
    }
}

/* Aranjare text sub imagine */

.container-text{
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

/* Subsolul paginii */
.footer {
    background-color: #333;  /* Fundal întunecat pentru a contrasta cu pagina */
    color: #f6f6f6;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    margin-top: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer p {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.footer-link {
    color: #be0709;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #900506;
}
