/* css/simulari.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

/* =========================================
   TITLU PRINCIPAL
========================================= */
.simulari-main-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: fadeDown 0.6s ease-out forwards;
}

/* =========================================
   STILIZARE CARDURI SIMULĂRI
========================================= */
.sim-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
}

.sim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 91, 191, 0.1);
    border-color: rgba(0, 91, 191, 0.3);
}

/* =========================================
   BUTON "DESCHIDE SIMULAREA"
========================================= */
.sim-btn {
    background-color: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sim-btn:hover {
    background-color: #005bbf; /* Culoarea primary */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 91, 191, 0.2);
}

.sim-btn .material-symbols-outlined {
    transition: transform 0.3s ease;
}

/* Efect de mică săgeată spre dreapta/zoom la hover pe buton */
.sim-btn:hover .material-symbols-outlined {
    transform: scale(1.1);
}

/* =========================================
   STILIZARE CHECKBOX-URI CUSTOM
========================================= */
.sim-checkbox {
    appearance: none;
    background-color: #f8f9fa;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 2px solid #c1c6d6;
    border-radius: 0.25em;
    display: grid;
    place-content: center;
    transition: all 0.2s ease-in-out;
}

.sim-checkbox::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em white;
    background-color: white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.sim-checkbox:checked {
    background-color: #005bbf;
    border-color: #005bbf;
}

.sim-checkbox:checked::before {
    transform: scale(1);
}

/* =========================================
   ANIMAȚII
========================================= */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}