@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --gray-light: #f8f9fa;
    --accent-color: #000000;
    --youtube-blue: #065fd4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* =========================================
   1. HEADER & NAVIGARE
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #222; 
    border-bottom: 1px solid #333;
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%);
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    z-index: 1001;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #ccc; 
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover { color: #fff; }

.menu-toggle {
    display: none; 
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* =========================================
   2. HERO SECTION (ACASA)
   ========================================= */
.hero {
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('img/hero.jpg');
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; justify-content: flex-start; 
    padding-top: 180px; align-items: center; text-align: center; color: white; width: 100%;
}
.hero h1 {
    font-size: 5rem; font-weight: 900; margin-bottom: 10px; letter-spacing: -3px;
    line-height: 1; word-wrap: break-word; text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,1);
}
.hero p {
    font-size: 2.2rem; max-width: 800px; margin-bottom: 40px; font-weight: 400; 
    letter-spacing: -1px; text-shadow: 0 0 20px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,1);
}
.hero-buttons {
    display: flex; gap: 25px; margin-top: 320px; flex-wrap: wrap; justify-content: center;
}
.hero-btn {
    text-decoration: none; color: white; font-weight: 800; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 1px; padding: 15px 40px; border-radius: 50px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(5px); 
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-btn:hover {
    background: white; color: black; border-color: white;
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* =========================================
   3. INFO BAR
   ========================================= */
.info-bar {
    background-color: #111; color: white; display: flex; justify-content: center;
    align-items: center; flex-wrap: wrap; padding: 35px 20px; gap: 80px;
    text-align: center; width: 100%; margin-bottom: 0; 
}
.info-item { display: flex; flex-direction: column; }
.info-item .label {
    font-size: 0.75rem; text-transform: uppercase; color: #888;
    font-weight: 600; margin-bottom: 8px; letter-spacing: 1px;
}
.info-item .value {
    font-size: 1.1rem; font-weight: 700; color: #fff; text-transform: uppercase;
}

/* =========================================
   4. SECTIUNI GENERALE
   ========================================= */
.container { max-width: 1000px; margin: 0 auto; padding: 80px 20px; }
.section-title {
    text-align: center; font-size: 3.5rem; font-weight: 900; color: #222; 
    text-transform: uppercase; letter-spacing: -2px; margin-top: 25px; 
    margin-bottom: 40px; line-height: 1.1;
}

/* =========================================
   5. VIZIUNEA BISERICII (Stil Desktop)
   ========================================= */
#viziune {
    background-color: #e5e5e5; width: 100%; max-width: 100%; padding: 0 20px 50px 20px; 
}
.vision-card {
    max-width: 900px; margin: 0 auto; background: #f9f9f9; padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-left: 5px solid #000; text-align: center;
}
.vision-text {
    font-size: 1.8rem; font-weight: 300; line-height: 1.8; color: #333; margin: 0; 
}
.vision-text strong {
    font-weight: 900; color: #000; text-transform: uppercase; letter-spacing: -0.5px;
}

/* =========================================
   6. PROGRAM (CARDURI)
   ========================================= */
.grid-3 {
    display: flex; flex-wrap: wrap; gap: 30px; justify-content: center;
}
.meeting-card {
    flex: 1; min-width: 250px; background: #fff; border-radius: 12px; 
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center;
}
.meeting-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.meeting-img-wrap {
    height: 240px; overflow: hidden; position: relative;
}
.meeting-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.meeting-card:hover .meeting-img-wrap img {
    filter: grayscale(0%); transform: scale(1.05); 
}
.meeting-content { padding: 25px; }
.meeting-content h3 {
    font-size: 1.4rem; font-weight: 800; margin-bottom: 15px;
    text-transform: uppercase; color: #000;
}
.meeting-details {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    font-weight: 700; color: #555; margin-bottom: 20px; font-size: 0.9rem;
}
.meeting-details .sep { color: #ccc; font-weight: 300; }
.meeting-content p { color: #777; font-size: 1rem; line-height: 1.5; }

/* =========================================
   7. PAGINA LIVE & CONTACT (Stiluri Comune + Arhiva)
   ========================================= */
.live-section {
    padding: 10px 20px 60px 20px; background: #fff; color: #222; 
    min-height: 85vh; text-align: center;
}
.live-title {
    font-size: 3rem; font-weight: 900; margin-bottom: 10px;
    text-transform: uppercase; color: #222; text-shadow: 2px 2px 10px rgba(0,0,0,0.1); 
    margin-top: 0; 
}
.live-subtitle {
    font-size: 1.2rem; opacity: 0.8; color: #555; margin-bottom: 40px;
}
.video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); border-radius: 12px;
    overflow: hidden; margin-bottom: 50px;
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* Chenarul de informatii - Stil nou */
.live-info {
    text-align: center; max-width: 600px; margin: 0 auto; background: #f9f9f9; 
    color: #555; border: 1px solid #eee; padding: 30px; border-radius: 8px;
    display: block; /* Centrare */
}
.live-info h3 {
    color: #222; margin-bottom: 15px; font-size: 1.3rem; font-weight: 800;
}

/* Buton Youtube - Transparent cu albastru */
.youtube-btn {
    background: transparent; border: 2px solid var(--youtube-blue); 
    color: var(--youtube-blue) !important; margin-top: 20px; font-weight: 700;
    padding: 12px 30px; text-decoration: none; display: inline-block;
    border-radius: 4px; transition: all 0.3s;
}
.youtube-btn:hover {
    background: var(--youtube-blue); color: #fff !important; 
}

/* --- ARHIVA VIDEO (Grid 3x3 - NOU) --- */
.archive-section { 
    margin-top: 60px; 
    border-top: 1px solid #eee; 
    padding-top: 40px; 
}

.archive-header { 
    margin-bottom: 30px; 
}
.archive-header h2 { 
    font-size: 2rem; 
    color: #333; 
    margin-bottom: 10px; 
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
}

.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}

.thumb-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 24px;
    border: 2px solid white;
    transition: background 0.3s;
}

.video-card:hover .play-overlay { 
    background: #FF0000; 
    border-color: #FF0000; 
}

.card-details { 
    padding: 15px; 
}

.card-title { 
    font-weight: bold; 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
    color: #222; 
    line-height: 1.3; 
}

.card-sub { 
    font-size: 0.9rem; 
    color: #777; 
}

/* =========================================
   8. CONTACT
   ========================================= */
.contact-unified-box {
    max-width: 800px; margin: 0 auto; background: #f9f9f9; padding: 50px;
    border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    border: 1px solid #eee; text-align: left; 
}
.contact-header-info {
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 20px; margin-bottom: 30px; text-align: center;
}
.c-item {
    flex: 1; min-width: 200px; font-size: 0.9rem; color: #555;
}
.c-item i {
    display: block; font-size: 1.5rem; color: #222; margin-bottom: 10px;
}
.c-item strong { color: #000; text-transform: uppercase; }
.contact-divider {
    border: 0; height: 1px; background: #e0e0e0; margin: 30px 0;
}
.contact-form-wide { width: 100%; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-weight: 700; font-size: 0.85rem;
    margin-bottom: 8px; color: #333; text-transform: uppercase;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 2px solid #ddd;
    background: #fff; border-radius: 4px; font-family: 'Inter', sans-serif;
    font-size: 1rem; color: #333; transition: border-color 0.3s;
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: #222;
}
.submit-btn {
    display: inline-block; background: #222; color: #fff;
    padding: 16px 40px; border: none; font-weight: 800;
    text-transform: uppercase; font-size: 0.9rem; cursor: pointer;
    border-radius: 4px; transition: background 0.3s; width: 100%;
}
.submit-btn:hover { background: #000; }

/* =========================================
   9. FOOTER
   ========================================= */
.site-footer {
    background-color: #222; padding: 70px 20px 30px 20px; display: flex;
    flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: #888;
}
.footer-socials {
    display: flex; gap: 30px; margin-bottom: 35px; justify-content: center;
}
.footer-socials a {
    color: #777; font-size: 1.6rem; transition: all 0.3s ease;
    text-decoration: none; display: flex; align-items: center; justify-content: center;
}
.footer-socials a:hover { color: #fff; transform: translateY(-3px); }
.footer-logo h2 {
    font-family: 'Inter', sans-serif; font-weight: 300; color: #fff;
    font-size: 1.6rem; letter-spacing: 2px; margin-bottom: 30px;
    text-transform: uppercase; line-height: 1.3;
}
.footer-logo h2 strong { font-weight: 900; }
.footer-contact {
    display: flex; gap: 30px; flex-wrap: wrap; justify-content: center;
    font-size: 0.95rem; margin-bottom: 50px; width: 100%;
}
.contact-item { display: flex; align-items: center; justify-content: center; gap: 10px; }
.contact-item span { color: #999; }
.footer-copyright {
    border-top: 1px solid #333; width: 100%; max-width: 1000px;
    padding-top: 25px; font-size: 0.85rem; color: #555;
}

/* =========================================
   10. DONEAZA
   ========================================= */
.donation-wrapper { max-width: 900px; margin: 0 auto; padding: 20px; }
.card-donation-title {
    text-align: center; font-size: 1.4rem; font-weight: 800;
    margin-top: 40px; margin-bottom: 20px; color: #222; text-transform: uppercase;
}
.donation-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px;
}
.donate-card-btn {
    background-color: #1066af; color: white; padding: 20px 10px;
    text-decoration: none; font-weight: 800; text-transform: uppercase;
    border-radius: 6px; transition: background 0.3s, transform 0.2s;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.donate-card-btn:hover {
    background-color: #0d528c; transform: translateY(-3px); color: #fff;
}
.custom-donation-area {
    margin-top: 10px; margin-bottom: 40px; display: flex; justify-content: center;
}
.donate-custom-btn {
    background-color: #00d276; color: white; width: 60%; padding: 20px;
    text-decoration: none; font-weight: 900; text-transform: uppercase;
    border-radius: 6px; transition: background 0.3s, transform 0.2s;
    font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,210,118,0.3);
}
.donate-custom-btn:hover {
    background-color: #00b063; transform: translateY(-3px); color: #fff;
}
.separator-with-text {
    display: flex; align-items: center; justify-content: center;
    margin: 40px 0; width: 100%;
}
.separator-with-text .line {
    flex-grow: 1; height: 2px; background-color: #000; opacity: 0.8; 
}
.separator-with-text .text {
    padding: 0 20px; font-weight: 900; color: #000; text-transform: uppercase; font-size: 1.2rem;
}
.bank-transfer-box {
    background-color: #e9ecef; padding: 30px; border-radius: 8px;
    margin-top: 0; margin-bottom: 30px; text-align: center;
    border: 1px solid #dee2e6; color: #333;
}
.bank-transfer-box h3 {
    font-size: 1.2rem; font-weight: 800; margin-bottom: 20px;
    text-transform: uppercase; color: #222;
}
.bank-transfer-box p {
    font-size: 1.05rem; margin-bottom: 10px; line-height: 1.5;
}
.bank-transfer-box strong { color: #000; font-weight: 700; }

/* =========================================
   11. PAGINA DESPRE NOI
   ========================================= */

.scroll-animate {
    opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out;
}
.scroll-animate.active {
    opacity: 1; transform: translateY(0);
}

/* --- 1. HERO VIZIUNE --- */
.about-hero-vision {
    position: relative; height: auto; min-height: auto;
    padding-top: 150px; padding-bottom: 80px;
    background-image: url('img/fundalpaginadespre.jpeg');
    background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; margin-bottom: 0; 
}
.overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}
.hero-content-center { position: relative; z-index: 2; max-width: 900px; }
.vision-statement-box {
    padding: 30px; background: rgba(0, 0, 0, 0.4); 
    border-radius: 12px; backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
}
.vision-sentence {
    font-size: 1.8rem; font-weight: 300; line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); color: #fff;
}
.vision-sentence strong { font-weight: 900; color: #fff; text-transform: uppercase; }

/* --- 2. PASTOR SECTION --- */
.pastor-section-dark {
    position: relative; padding-top: 20px; padding-bottom: 100px;
    background-image: url('img/fundalpaginadespre.jpeg');
    background-size: cover; background-position: center; background-attachment: fixed;
    z-index: 1;
}
.overlay-dark-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}
.relative-z { position: relative; z-index: 2; }
.spotlight-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center;
}
.spotlight-image-rect img {
    width: 100%; max-width: 400px; border-radius: 8px;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: block; margin: 0 auto;
}
.pastor-text-light { color: #fff; text-align: left; }
.pastor-main-name-light {
    font-size: 3rem; font-weight: 900; color: #fff;
    text-transform: uppercase; line-height: 1; margin-bottom: 5px;
}
.pastor-role-light {
    font-size: 1.1rem; color: #aaa; font-weight: 400;
    text-transform: uppercase; letter-spacing: 4px; margin-bottom: 30px;
}
.pastor-description-light p {
    font-size: 1.15rem; color: #ddd; line-height: 1.8; margin-bottom: 20px;
}
.highlight-service {
    border-left: 4px solid #fff; padding-left: 20px; font-style: italic;
    background: rgba(255,255,255,0.05); padding: 15px; border-radius: 0 8px 8px 0;
}

/* ==============================================================
   3, 4, 5 - STANDARD ANIMATIE (Tineret, Copii, Grupe)
   ============================================================== */

/* Containere Generale - NU MODIFICA */
.youth-slideshow-section, .kids-slideshow-section, .groups-slideshow-section {
    position: relative; min-height: 100vh; display: flex; flex-direction: column;
}
.youth-slideshow-section { z-index: 5; }
.kids-slideshow-section { z-index: 6; }
.groups-slideshow-section { z-index: 7; }

.slideshow-wrapper, .slideshow-wrapper-kids, .slideshow-wrapper-groups {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
    overflow: hidden; 
}

/* -------------------------------------------------------------
   AICI ESTE SCHIMBAREA: ANIMATIE UNIFICATA (5 poze x 5 sec)
   ------------------------------------------------------------- */
.slide-item, .slide-item-kid, .slide-item-group {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Variabila din HTML */
    background-image: var(--bg-img);
    background-size: cover; background-position: center;
    opacity: 0; 
    /* Durata totala: 5 poze * 5 secunde = 25s */
    animation: fadeLoopUniversal 25s infinite; 
}

/* Timpii de start pentru cele 5 pozitii */
.slide-item:nth-child(1), .slide-item-kid:nth-child(1), .slide-item-group:nth-child(1) { animation-delay: 0s; }
.slide-item:nth-child(2), .slide-item-kid:nth-child(2), .slide-item-group:nth-child(2) { animation-delay: 5s; }
.slide-item:nth-child(3), .slide-item-kid:nth-child(3), .slide-item-group:nth-child(3) { animation-delay: 10s; }
.slide-item:nth-child(4), .slide-item-kid:nth-child(4), .slide-item-group:nth-child(4) { animation-delay: 15s; }
.slide-item:nth-child(5), .slide-item-kid:nth-child(5), .slide-item-group:nth-child(5) { animation-delay: 20s; }

/* Animatia Universala */
@keyframes fadeLoopUniversal {
    0% { opacity: 0; }
    4% { opacity: 1; }   /* Apare intr-o secunda (1s) */
    20% { opacity: 1; }  /* Ramane vizibil pana la 5s */
    24% { opacity: 0; }  /* Dispare in secunda 6 */
    100% { opacity: 0; }
}

/* -------------------------------------------------------------
   Overlay-uri si Containere Text
   ------------------------------------------------------------- */
.overlay-dark-youth, .overlay-dark-kids, .overlay-dark-groups {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); z-index: 1;
}

.youth-container-fixed, .kids-container-fixed, .groups-container-fixed {
    position: relative; z-index: 2; height: 100vh;
    display: flex; flex-direction: column; 
    justify-content: flex-end; 
    padding-bottom: 60px; 
}

/* POZITIONARE TITLURI "PE LINIE" PENTRU TINERET SI COPII */
.youth-header-left,
.kids-header-top { 
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    transform: translateY(-50%); 
    z-index: 20;
    padding: 0 20px;
}

/* POZITIONARE SPECIALA PENTRU GRUPE DE CASA (SUB LINIE) */
.groups-header-left { 
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 15px 20px 0 20px; 
}

/* Stilul Textului (Mare si Alb) ramane comun pentru toate */
.youth-header-left .massive-title-left,
.kids-header-top .massive-title,
.groups-header-left .massive-title-left {
    margin: 0 auto; 
    max-width: 1000px;
    font-size: 5rem; font-weight: 900; color: #fff; text-transform: uppercase;
    text-align: left; 
    text-shadow: 0 10px 30px rgba(0,0,0,1);
    line-height: 1;
}

.features-grid-bottom-fixed {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    background: rgba(0,0,0,0.8); padding: 30px; border-radius: 12px;
    backdrop-filter: blur(5px); align-items: start; height: auto; 
}
.feat-bottom-item-fixed { text-align: center; color: #fff; height: 100%; }
.feat-bottom-item-fixed h3 {
    font-size: 1.1rem; font-weight: 800; margin-bottom: 15px; color: #fff;
    text-transform: uppercase; border-bottom: 2px solid #fff; display: inline-block; padding-bottom: 5px;
}
.feat-bottom-item-fixed p { font-size: 0.9rem; line-height: 1.4; color: #ddd; }


/* =========================================
   12. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    /* HEADER */
    header { 
        flex-direction: row; 
        justify-content: space-between; 
        padding: 15px 20px;
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .logo { font-size: 1rem; flex-shrink: 0; }
    .menu-toggle { display: block; margin-left: auto; }
    nav { position: absolute; top: 100%; left: 0; width: 100%; z-index: 100; }
    nav ul { display: none; flex-direction: column; background: #222; padding: 20px 0; text-align: center; border-top: 1px solid #333; margin: 0; }
    nav ul.active { display: flex; }

    /* HERO */
    .hero { height: 100vh; padding-top: 110px; }
    .hero h1 { font-size: 3rem; }
    .hero-buttons { flex-direction: row; flex-wrap: nowrap; gap: 5px; margin-top: 290px; width: 100%; padding: 0 5px; }
    .hero-btn { width: auto; flex: 1; padding: 12px 5px; font-size: 0.65rem; white-space: nowrap; }
    
    /* INFO & SECTIONS */
    .info-bar { flex-direction: column; gap: 20px; padding: 40px 20px; }
    .info-item { width: 100%; border-bottom: 1px solid #333; padding-bottom: 15px; }
    .section-title { font-size: 1.8rem; margin-top: 30px; padding: 0 10px; }
    .meeting-card .meeting-img-wrap img { filter: grayscale(100%) !important; transform: none !important; }
    .meeting-card.in-view .meeting-img-wrap img { filter: grayscale(0%) !important; transform: scale(1.05) !important; }
    .contact-header-info, .donation-grid { grid-template-columns: 1fr; }

    /* --- MODIFICARE VIZIUNE MOBIL (Stil Compact) --- */
    #viziune {
        padding: 30px 10px 30px 10px; /* Mai putin padding exterior */
    }
    .vision-card {
       padding: 20px 10px; /* Mult mai putin padding interior (era 40px) */
       width: 95%; /* Ocupa aproape tot ecranul */
    }
    .vision-text {
        font-size: 1.1rem; /* Micsoram fontul semnificativ */
        line-height: 1.4; /* Strangem putin randurile */
    }
    
    /* DESPRE NOI MOBILE */
    .about-hero-vision { height: auto; min-height: auto; padding: 100px 20px 50px 20px; }
    .vision-sentence { font-size: 1.2rem; }
    .pastor-section-dark { padding-top: 0; }
    .spotlight-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .pastor-text-light { text-align: center; }
    .pastor-main-name-light { font-size: 2.5rem; }

    /* ==============================================================
       NOU: EFECT DE BLUR PE FUNDAL + IMAGINE CLARA COMPLETA (MOBIL)
       ============================================================== */
    .slide-item, .slide-item-kid, .slide-item-group {
        /* Ascundem imaginea de baza care e "cover" */
        background-image: none !important;
        background-color: #111; 
    }

    /* 1. LAYER DIN SPATE: BLURAT */
    .slide-item::before, .slide-item-kid::before, .slide-item-group::before {
        content: '';
        position: absolute;
        inset: 0;
        /* Folosim variabila CSS definita in HTML */
        background-image: var(--bg-img);
        background-size: cover;
        background-position: center;
        /* Blur puternic si intunecat */
        filter: blur(15px) brightness(0.4); 
        z-index: 1;
    }

    /* 2. LAYER DIN FATA: CLAR SI COMPLET */
    .slide-item::after, .slide-item-kid::after, .slide-item-group::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--bg-img);
        /* Aici e secretul: contain arata toata poza */
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: center;
        z-index: 2;
    }

    .youth-container-fixed, .kids-container-fixed, .groups-container-fixed { 
        height: auto; 
        min-height: 100vh; 
        justify-content: flex-end; 
        padding-bottom: 30px; 
    }
    
    /* TITLURI MOBILE SUPRAPUSE */
    .youth-header-left .massive-title-left,
    .kids-header-top .massive-title,
    .groups-header-left .massive-title-left { 
        font-size: 2.5rem; 
        margin: 0;
        margin-bottom: 10px;
    }

    /* CUTIA NEAGRA DE JOS - TRANSFORMATA IN GRILA 2x2 */
    .features-grid-bottom-fixed { 
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px; 
        height: auto; 
        background: rgba(0,0,0,0.85);
        padding: 15px; 
        margin: 0 10px; 
        border-radius: 10px;
    }

    /* Stilizare elemente interioare pe mobil (mai mici) */
    .feat-bottom-item-fixed h3 {
        font-size: 0.8rem; 
        margin-bottom: 5px;
        padding-bottom: 3px;
    }
    .feat-bottom-item-fixed p {
        font-size: 0.7rem; 
        line-height: 1.3;
    }
    .feat-bottom-item-fixed i.fa-chevron-down,
    .feat-bottom-item-fixed i {
        display: none !important;
    }

    /* RESPONSIVE MANUAL */
    .manual-teaser-content { flex-direction: column; text-align: center; }
    .manual-paper { padding: 30px 20px; }
    .manual-hero h1 { font-size: 2rem; }

    /* FIX LIVE TITLE & CONTACT PADDING */
    .live-section {
        padding-top: 120px; 
    }
    .live-title {
        font-size: 1.7rem; 
        white-space: nowrap; 
    }

    /* FIX DONATII MOBIL - Fortat !important */
    .donation-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        width: 100%;
    }
    
    .custom-donation-area {
        display: block; /* Scoate flex-ul care centra */
        width: 100%;
        margin: 15px 0 0 0;
        padding: 0;
    }

    /* AICI ESTE FIX-UL CRITIC PENTRU BUTONUL VERDE */
    .donate-custom-btn {
        display: block;
        width: 100% !important; /* Suprascrie 60% */
        max-width: 100%;
        padding: 20px 10px !important; /* La fel ca cele albastre */
        font-size: 1.1rem;
        box-sizing: border-box;
        margin: 0;
    }
    
    /* Asiguram ca si cele albastre au acelasi padding */
    .donate-card-btn {
        padding: 20px 10px !important;
        width: 100%;
    }

    .cta-minimal-title {
        font-size: 1.2rem;
    }
}

/* =========================================
   13. SCROLL INDICATOR
   ========================================= */
.scroll-indicator {
    position: fixed;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 999; 
    color: #fff; 
    font-size: 2.5rem; 
    opacity: 1; 
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 1)); 
    cursor: pointer;
    animation: bounceArrow 2s infinite; 
    transition: opacity 0.3s ease, visibility 0.3s;
}

.scroll-indicator.hide-arrow {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

@media (max-width: 900px) {
    .scroll-indicator {
        font-size: 2rem;
        bottom: 25px;
    }
}

/* =========================================
   14. STILURI PENTRU PAGINA MANUALUL BISERICII
   ========================================= */

.manual-hero {
    background: #222;
    color: #fff;
    padding: 160px 20px 60px 20px; 
    text-align: center;
}
.manual-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.manual-hero p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* BUTON DOWNLOAD PDF */
.manual-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #e63946; /* Rosu vizibil */
    color: white;
    font-weight: 800;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    margin-top: 30px;
}
.manual-download-btn:hover {
    background-color: #d62828;
    transform: translateY(-3px);
    color: #fff;
}

/* SECTIUNEA DE CONTINUT */
.manual-content-section {
    background: #f4f4f4;
    padding: 60px 20px;
    min-height: 100vh;
}

.manual-paper {
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 8px;
    font-family: 'Inter', sans-serif; 
}

/* FORMATARE TEXT SI CAPITOLE */
.manual-chapter { 
    margin-bottom: 50px; 
}

.manual-chapter h2 {
    font-size: 1.8rem;
    color: #111;
    border-bottom: 3px solid #000;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
}

.manual-chapter h3 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 800;
}

.manual-chapter h4 {
    font-size: 1.1rem;
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Paragrafe si Liste */
.manual-chapter p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify; 
}

.manual-chapter ul { 
    padding-left: 20px; 
    margin-bottom: 20px;
}

.manual-chapter li { 
    margin-bottom: 8px; 
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    list-style-type: disc; /* Puncte */
}

/* Cutie pentru citate/motto */
.quote-box {
    background: #f8f9fa;
    border-left: 5px solid #000;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #333;
}

/* Divizor fin intre capitole */
.manual-divider {
    border: 0; 
    height: 1px; 
    background: #e0e0e0; 
    margin: 50px 0;
}

/* Buton CTA de jos */
.manual-cta-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s;
}
.manual-cta-btn:hover { background: #333; }

/* Responsive Mobil specific Manual */
@media (max-width: 900px) {
    .manual-paper { padding: 30px 20px; }
    .manual-hero h1 { font-size: 2rem; }
    .manual-chapter h2 { font-size: 1.5rem; }
    .manual-chapter p, .manual-chapter li { text-align: left; }
}

/* CHENARUL "VREI SA AFLI MAI MULTE" DIN DESPRE */
.manual-teaser-section {
    background-color: #111; 
    padding: 30px 20px; 
    border-top: 1px solid #333;
    position: relative;
    z-index: 10;
}

.manual-teaser-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.manual-text h3 {
    color: #fff;
    font-size: 2rem; 
    font-weight: 900;
    margin: 0; 
    text-transform: uppercase;
}

.manual-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 15px; 
    color: #fff;
    font-weight: 900; 
    text-decoration: none;
    font-size: 1.2rem; 
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 35px; 
    border-radius: 50px;
}

.manual-link-arrow i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.manual-link-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.manual-link-arrow:hover i {
    transform: translateX(10px); 
}

/* =========================================
   15. CTA (CALL TO ACTION) INDEX - FINUT
   ========================================= */
.cta-minimal-section {
    background-color: #f9f9f9; 
    border-top: 1px solid #eeeeee;
    
    padding: 10px 20px; 
    
    text-align: center;
    margin-top: -120px;
    position: relative; 
    z-index: 5; 
}

.cta-minimal-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; 
}

.cta-minimal-title {
    margin: 0; 
    line-height: 1.2;
}

.cta-minimal-title {
    font-size: 1.5rem;
    font-weight: 300; /* Font subtire */
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.cta-minimal-title strong {
    font-weight: 900; /* Doar cuvintele cheie ingrosate */
    color: #000;
}

.cta-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    border: 2px solid #000; /* Doar contur negru */
    padding: 12px 35px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px; /* Rotunjit complet */
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.cta-outline-btn:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-outline-btn i {
    transition: transform 0.3s ease;
}

.cta-outline-btn:hover i {
    transform: translateX(5px);
}

/* Ajustare pentru mobil */
@media (max-width: 900px) {
    .cta-minimal-title {
        font-size: 1.2rem;
    }
}