body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Merriweather', serif; }

section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fallback Gri pentru Imagini Lipsă */
img {
    background-color: #f3f4f6; /* Gri deschis */
    position: relative;
    display: block;
}

.pattern-divider {
    background-image: url('assets/motiv.png'); 
    background-repeat: repeat-x;        
    background-size: contain;           
    height: 40px; 
    width: 100%;
    opacity: 0.8;
}

/* Galeria Activitate */
.carousel-image {
    transition: opacity 0.4s ease-in-out;
    border-radius: 2.5rem;
    height: 450px;
    width: 100%;
    object-fit: cover;
    border: 2px solid #dc2626;
}

.thumb-img {
    width: 85px; height: 85px;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 3px solid transparent;
    cursor: pointer;
    transition: 0.15s;
    background-color: #f3f4f6;
}

.thumb-img.active { border-color: #dc2626; transform: scale(1.02); }
.carousel-thumb-container::-webkit-scrollbar { height: 6px; }
.carousel-thumb-container::-webkit-scrollbar-thumb { background-color: #dc2626; border-radius: 20px; }

/* Mobile Menu */
/* Meniul Lateral stilizat ca restul site-ului */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%; 
    max-width: 350px;
    height: 100vh;
    background: #ffffff; /* Fundal alb curat */
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Împinge conținutul între dividere */
    
    /* Efectul de glisare */
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

/* Zonele cu pattern (sus și jos) */
.menu-pattern-container {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #f3f4f6; /* Un gri foarte deschis sub pattern */
    position: relative;
}

/* Conținutul din mijloc */
.menu-links-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
}

.mobile-menu-item {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-item i {
    font-size: 0.8rem;
    color: #dc2626;
}

/* Butonul de închidere mai vizibil */
.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 110;
    background: #000;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay-ul întunecat pentru restul ecranului */
body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
}

/* Helpers */
.info-step {
    border: 2px solid black; padding: 1.5rem;
    border-radius: 1.25rem; display: flex; gap: 1.25rem; align-items: start;
}
.step-num { font-size: 2rem; font-weight: 900; color: #dc2626; }

.social-btn {
    display: flex; align-items: center; gap: 1rem;
    background: white; border: 2px solid black;
    padding: 1rem 1.5rem; border-radius: 1rem;
    font-weight: 900; text-transform: uppercase;
    transition: 0.2s;
}
.social-btn:hover { border-color: #dc2626; color: #dc2626; }

.contact-box {
    border: 2px solid black; padding: 1.5rem 2rem;
    border-radius: 1.5rem; transition: 0.3s;
}
.contact-box:hover { border-color: #dc2626; }
.contact-label { font-size: 0.7rem; font-weight: 900; color: #dc2626; text-transform: uppercase; }
.contact-text { font-size: 1.25rem; font-weight: 900; color: black; }

@media (max-width: 768px) {
    .carousel-image { height: 300px; }
}