body {
    font-family: 'Georgia', serif; /* Font elegant, specific teatrului */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #5CAAEA; /* Maro deschis, ca o scenă de teatru veche */
    color: #333;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.overlay {
    background-color: rgba(255, 255, 255, 0.85); /* Strat semitransparent pentru lizibilitate */
    margin: 20px auto;
    padding: 30px;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
header {
    text-align: center;
    padding-bottom: 20px;
}
header h1 {
    color: #123a4a; /* O nuanță mai închisă de maro pentru titlu */
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
nav {
    background: #0a87ee; /* Maro mai închis pentru navigare */
    padding: 10px 0;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
}
nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}
nav a:hover, nav a.active {
    background: #ff0202; /* Nuanță mai deschisă la hover/activ */
    border-radius: 5px;
}
.content-section {
    padding: 20px 0;
}
h2 {
    color: #000000;
    border-bottom: 2px solid #0a87ee;
    padding-bottom: 10px;
    margin-top: 20px;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    background: #61B2E8; /* Fundal mai deschis pentru elementele listei */
    margin-bottom: 10px;
    padding: 12px;
    border-left: #ff0202 5px solid;
    border-radius: 4px;
}
.whatsapp-button {
    display: inline-block;
    background: #25D366; /* Culoarea oficială WhatsApp */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.whatsapp-button:hover {
    background: #1DA851;
    transform: translateY(-2px);
}
.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background: #0a87ee;
    color: #fff;
    margin-top: 30px;
    border-top: #0a87ee 3px solid;
    border-radius: 0 0 10px 10px;
}
/* Stiluri specifice paginilor - vor fi actualizate dinamic cu JS */
#home-content, #services-content, #contact-content {
    display: none; /* Ascunde toate secțiunile inițial */
}
#home-content.active, #services-content.active, #contact-content.active {
    display: block; /* Afișează doar secțiunea activă */
}
@media only screen and (max-width: 600px) {
    .stanga{
        width: 100% !important;
    }
    .stangacontact{
        width: 50% !important;
    }
    .dreaptacontact{
        width: 50% !important;
    }
    .dreapta{
        width: 100% !important;
    }
    .pozamob{
        width: 100% !important;
        height:200px;
    }
    nav a{
        padding: 10px 9px;
    }
    .mobvi{
        display: block !important;
    }
    .mobvicontact{
        display: flex !important;
    }
    .videomob{
        margin-top:0px !important;
        margin-bottom:10px !important;
    }
    p {
        letter-spacing: -0.3px;
    }
}