/* css/despre.css */

/* Importăm fontul Montserrat pentru un impact vizual puternic la titluri */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

/* =========================================
   TITLUL PRINCIPAL (HERO)
========================================= */
.despre-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease-out forwards;
}

.despre-highlight {
    background: linear-gradient(135deg, #005bbf 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =========================================
   TITLURI DE SECȚIUNI
========================================= */
.despre-section-title, .despre-section-title-left {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Bara decorativă centrată (pentru titlurile din secțiunile cu text centrat) */
.despre-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005bbf, #58e6ff);
    border-radius: 2px;
}

/* Bara decorativă aliniată la stânga */
.despre-section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005bbf, #58e6ff);
    border-radius: 2px;
}

/* =========================================
   EFECTE CARDURI (Pilonii/Ce ne propunem)
========================================= */
.despre-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    z-index: 1;
    position: relative;
}

/* Efect de levitație elegantă la hover */
.despre-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 91, 191, 0.08);
    border-color: rgba(0, 91, 191, 0.2);
    z-index: 2;
}

.despre-icon-wrapper {
    transition: all 0.4s ease;
}

/* Mărire ușoară a iconiței la hover pe card */
.despre-card:hover .despre-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

/* =========================================
   ANIMAȚII
========================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}