/* style.css - WebKonnekt */

:root { 
    --blue: #0052CC; 
    --orange: #FF6600; 
    --dark: #1E293B; 
    --glass: rgba(255, 255, 255, 0.85);
}

body { 
    margin: 0; 
    font-family: 'Segoe UI', Tahoma, sans-serif; 
    color: var(--dark);
    background-color: #f4f7f9;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(244, 247, 249, 0.8), rgba(233, 239, 245, 0.9)), 
                url('webkonnekt_background.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

nav { 
    background: var(--glass); 
    padding: 15px 8%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.logo { font-size: 1.8rem; font-weight: 900; color: var(--blue); text-transform: uppercase; }

.nav-links a { text-decoration: none; color: var(--dark); margin-left: 25px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--orange); }

/* SECTIUNEA REPARATA PENTRU ICONITE */
#portofoliu i {
    transition: all 0.3s ease !important;
    cursor: pointer;
}
#portofoliu i:hover {
    color: var(--orange) !important;
    transform: scale(1.2);
    opacity: 1 !important;
}

.stats-bar { 
    background: rgba(0, 82, 204, 0.05); 
    padding: 10px 8%; 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    font-family: monospace; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero { padding: 100px 8%; text-align: center; }
.hero h1 { font-size: 3.5rem; color: var(--blue); margin-bottom: 20px; }

.section { padding: 60px 8%; }
.card { 
    background: var(--glass); 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid rgba(255,255,255,0.5);
    transition: 0.3s;
}
.card:hover { transform: translateY(-5px); }

.flex { display: flex; gap: 60px; flex-wrap: wrap; align-items: center; }
.badge { color: var(--orange); font-weight: bold; text-transform: uppercase; }
.btn { background: var(--orange); color: white; padding: 18px 40px; border-radius: 10px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; }

.floating-contact { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.f-btn { width: 60px; height: 60px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 26px; }

footer { background: var(--dark); color: rgba(255,255,255,0.8); text-align: center; padding: 40px 8%; }

/* --- REPARATIE MOBIL --- */
.menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; color: var(--blue); }

@media (max-width: 768px) {
    .menu-toggle { 
        display: block !important; 
        z-index: 1100;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1050;
    }
    .nav-links.active { display: flex !important; }
    .nav-links a { margin: 15px 0; font-size: 1.2rem; display: block; margin-left: 0; }
}