/* ================================================
   FIȘIER CSS MASTER PENTRU KIDS ACRO DANCE SIBIU
   (Versiune optimizată și curată pentru responsive)
   ================================================ */

/* ----------------------------------------
   1. Variabile & Reset General
   ---------------------------------------- */
:root {
    --blue-light: #7bdff2;
    --blue-dark: #3b3d88;
    --green: #6fdc7c;
    --pink-dust: #f2c6d0;
    --text-dark: #264653;
    --text-light: #555;
    --max-width: 1100px;
    --silver-light: #F8F9FA;
    --silver-dark: #E9ECEF;
    --silver-border: #B0C4DE;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background: url('images/background.jpg') center/cover no-repeat fixed;
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ----------------------------------------
   2. Layout & Containere Generale
   ---------------------------------------- */
main.container-principal {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
}

/* ----------------------------------------
   3. Componente Reutilizabile (Carduri, Butoane)
   ---------------------------------------- */
.card-standard {
    border: 1.5px solid var(--silver-border);
    border-radius: 12px;
    padding: 2rem;
    background: linear-gradient(135deg, var(--silver-light), var(--silver-dark));
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.card-standard:hover {
    transform: translateY(-5px);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--blue-dark);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn:hover {
    background-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ----------------------------------------
   4. Header & Meniu
   ---------------------------------------- */
.header-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.meniu-img {
    position: relative;
    width: 100%;
}

.meniu-bg {
    display: block;
    width: 100%;
    height: auto;
}

.linkuri {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 95%;
}

.linkuri a {
    text-decoration: none;
    font-weight: 700;
    color: var(--blue-dark);
    background: rgba(255,255,255,0.85);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.linkuri a:hover,
.linkuri a.active {
    background: var(--pink-dust);
}

#meniu-mobil {
    display: none; /* ascunde pe desktop */
}

.burger {
    display: none;
}

/* ----------------------------------------
   5. Footer
   ---------------------------------------- */
footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: url('images/footer.jpg') center bottom/cover no-repeat;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.footer-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 10px 0;
}

.social-link:hover {
    color: var(--green);
    text-decoration: underline;
}

.icon {
    margin-right: 5px;
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* ----------------------------------------
   6. Lightbox & Animații
   ---------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-activ {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------
   7. Map Container
   ---------------------------------------- */
.map-container {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ----------------------------------------
   8. Responsive
   ---------------------------------------- */
@media (max-width: 1100px) {
    .linkuri { display: none; }

    #meniu-mobil {
        display: block;
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid var(--blue-dark);
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        appearance: none;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="rgba(59,61,136,1)" d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
        background-size: 20px;
        background-color: #fff;
        color: var(--blue-dark);
        cursor: pointer;
    }

    .footer-content h4 { font-size: 1.3rem; }
    .footer-content p { font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .footer-content h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
    .footer-content p { font-size: 0.8rem; line-height: 1.3; margin-bottom: 0.3rem; }
    .social-link { font-size: 0.8rem; margin: 5px 0; }

    .map-container iframe { height: 250px; }
}
