/* css/header.css */

/* Importăm un font adițional pentru un logo cu un aspect mai impunător */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
}

/* =========================================
   STILURI LOGO TEXT
========================================= */
.text-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    
    /* Efect de Gradient */
    background: linear-gradient(135deg, #005bbf 0%, #006573 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Umbră fină pentru profunzime */
    text-shadow: 0px 4px 15px rgba(0, 91, 191, 0.15);
    transition: all 0.3s ease;
    display: inline-block;
}

.text-logo:hover {
    transform: scale(1.02);
    /* Glow subtil la hover */
    text-shadow: 0px 4px 20px rgba(0, 91, 191, 0.4);
}


/* =========================================
   EFECTE LINK-URI NAVIGARE
========================================= */
.nav-link {
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

/* Linia animată de sub link-uri */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #005bbf;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}


/* =========================================
   BUTOANE STILIZATE
========================================= */
.btn-login {
    transition: all 0.3s ease;
    background-color: transparent;
    border: 1px solid transparent;
}

.btn-login:hover {
    color: #005bbf;
    background-color: rgba(0, 91, 191, 0.05);
    transform: translateY(-1px);
}

.btn-start {
    background: linear-gradient(135deg, #005bbf 0%, #1a73e8 100%);
    box-shadow: 0 4px 12px rgba(0, 91, 191, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-start:hover {
    box-shadow: 0 6px 18px rgba(0, 91, 191, 0.4);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-start:active {
    transform: scale(0.96) translateY(0);
    box-shadow: 0 2px 8px rgba(0, 91, 191, 0.2);
}