@font-face {
    font-family: 'font';
    src: url('/assets/fonts/ubuntu.ttf');
    font-weight: 100;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: font, Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #121212, black);
    color: white;
    overflow-x: hidden;
}



html {
    scroll-behavior: auto !important;
}

#particles-resources {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* --- TITLURI ALB PUR --- */
.text-white-pure {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1) !important;
}

/* --- HERO SECTION --- */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
    text-align: center;
    background: transparent;
}



.hero-center-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    will-change: transform, filter;
    animation: cyberPulseGlow 6s ease-in-out infinite alternate;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-hero-logo:hover {
    transform: scale(1.07) rotate(1deg);
    filter: drop-shadow(0 0 45px rgb(255 255 255 / 0.65)) drop-shadow(0 0 15px rgb(255 255 255 / 0.3));
}

@keyframes cyberPulseGlow {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15)) drop-shadow(0 0 5px rgba(0, 212, 255, 0.1)); }
    40% { transform: translateY(-6px) scale(1.01) rotate(-0.5deg); filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.35)) drop-shadow(0 0 8px rgba(0, 212, 255, 0.15)); }
    70% { transform: translateY(2px) scale(0.99) rotate(0.5deg); filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 12px rgba(0, 212, 255, 0.25)); }
    100% { transform: translateY(-12px) scale(1.03) rotate(0deg); filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)); }
}

.about-title { font-size: 3.5rem; font-weight: bold; margin-bottom: 1rem; color: #ffffff; text-shadow: 0 0 20px rgba(255, 255, 255, 0.15); }
.about-subtitle { font-size: 1.3rem; color: rgba(255, 255, 255, 0.7); max-width: 600px; }

.scroll-down-hint { position: absolute; bottom: 3rem; cursor: pointer; display: flex; flex-direction: column; align-items: center; text-decoration: none; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); transition: color 0.3s; }
.scroll-down-hint:hover { color: #ffffff; }
.scroll-down-hint .arrow { margin-top: 0.5rem; font-size: 1.5rem; animation: hintBounce 2s infinite; }

@keyframes hintBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* --- TEAM & VOLUNTEERS (FĂRĂ GLOW) --- */
.team-section { position: relative; z-index: 2; padding: 6rem 2rem; background: transparent; }
.section-container { max-width: 1200px; margin: 0 auto; }
.sub-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; font-weight: bold; }
.team-grid {
    display: grid;
    /* Forțăm 3 coloane egale */
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
    max-width: 900px; /* Am limitat lățimea ca să arate compact 3x3 */
    margin: 0 auto;
}
.volunteers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2.5rem; justify-content: center; }
.volunteers-grid { max-width: 1000px; margin: 0 auto; }

.member-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s;
}

.volunteers-title {
    margin-top: 3rem; /* Aici poți crește valoarea (ex: 8rem, 10rem) pentru a lăsa mai mult spațiu */
    margin-bottom: 3rem; /* Optional: poți adăuga și spațiu sub titlu */
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3); /* Bordură discretă, fără glow */
    background: rgba(255, 255, 255, 0.05);
}

.card-image-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 16px;
    margin: 0 auto 1.2rem auto;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s;
}

.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.member-card:hover .card-image-wrapper { border-color: rgba(255, 255, 255, 0.5); }
.member-info h3 { font-size: 1.2rem; color: #ffffff; margin-bottom: 0.3rem; }
.member-role { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); display: block; font-weight: 300; letter-spacing: 0.5px; }

/* --- OPTIMIZED AWARDS SECTION --- */
.awards-section { position: relative; z-index: 2; padding: 6rem 2rem; background: transparent; }
.awards-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }

.award-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    /* AICI E SCHIMBAREA: Am scos backdrop-filter */
    transition: transform 0.3s ease-out, border-color 0.3s;
    will-change: transform; /* Anunță browserul să pregătească placa video */
}

.award-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.award-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: transparent;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: swayEffect 4s ease-in-out infinite;
}
.member-card, .award-item {
    will-change: transform;
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 30px rgba(214, 36, 159, 0.5);
}

@keyframes swayEffect {
    0%, 100% { transform: rotate(-3deg) translateX(-2px); }
    50% { transform: rotate(3deg) translateX(2px); }
}

.award-icon img { max-width: 140%; max-height: 140%; object-fit: cover; }
.award-details { flex-grow: 1; }
.award-details h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.2rem; color: #fff; }
.award-stage { display: inline-block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: #7ae6fd; margin-bottom: 0.8rem; font-weight: bold; }
.award-details p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.7); margin: 0; text-align: left; }

/* --- FLOATING BUTTON --- */
.story-scroll-btn { position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 999; background: transparent; border: 1px solid rgba(255, 255, 255, 0.25); width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(5px); transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.scroll-btn-arrow { color: #ffffff; transform: rotate(180deg); transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.35s; display: block; }
.story-scroll-btn:hover { transform: translateY(-4px); border-color: #ffffff; }
.story-scroll-btn.top-action .scroll-btn-arrow { transform: rotate(0deg); }

/* --- RESPONSIVENESS DESIGN --- */
@media (max-width: 768px) {
    .team-grid {
        /* Pe mobil, revine la 1 sau 2 coloane */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        /* Pe telefoane foarte mici, 1 coloană */
        grid-template-columns: 1fr;
    }
}