/*
 * Stiluri pentru selecția tipului de cont - Register Step 1
 * Fișier: register-account-type.css
 * Data: 22 Martie 2026
 */

/* Stiluri pentru layoutul cu 3 coloane */
#register_step_1 .register-block {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

#register_step_1 .register-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Stiluri pentru titluri și descrieri */
#register_step_1 .register-block h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#register_step_1 .register-block p {
    font-size: 14px;
    margin: 10px 20px;
    line-height: 1.4;
}

/* Stiluri pentru butoane */
#register_step_1 .contact-gos.reg-links {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
}

/* Responsive Design - Tablet */
@media (max-width: 991px) {
    #register_step_1 .register-block {
        min-height: 300px;
        margin-bottom: 20px;
    }

    #register_step_1 .register-block h3 {
        font-size: 20px;
    }

    #register_step_1 .register-block p {
        font-size: 13px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    /* Pe mobile, fiecare tip de cont ocupă toată lățimea */
    #register_step_1 .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    #register_step_1 .register-block {
        min-height: 250px;
    }

    #register_step_1 .register-block h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    #register_step_1 .register-block p {
        font-size: 14px;
        margin: 8px 15px;
    }

    /* Ajustăm marginea textului "Alege tipul de cont" */
    #register_step_1 .or {
        margin-top: 20px;
        margin-bottom: 0;
    }
}

/* Culori specifice pentru fiecare tip */
.register_cumparator h3,
.register_cumparator p {
    color: #1e8c00 !important;
}

.register_gospodar h3 {
    color: #ed581c;
}

.register_gospodar p {
    color: #333;
}

.register_gastronomic h3 {
    color: #ed581c;
}

.register_gastronomic p {
    color: #333;
}

/* Efecte hover pentru fiecare tip */
.register_cumparator:hover {
    border-color: #1e8c00;
}

.register_gospodar:hover {
    border-color: #ed581c;
}

.register_gastronomic:hover {
    border-color: #ed581c;
}

/* Stiluri pentru container-ul principal */
#register_step_1 .reg-sec-block {
    padding: 20px 0;
}

/* Stil pentru textul "Alege tipul de cont" */
#register_step_1 .or {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    color: #333;
}

/* Stiluri pentru state-uri active */
.register-block.active {
    border: 3px solid #1e8c00;
    box-shadow: 0 0 20px rgba(30, 140, 0, 0.3);
}

/* Animații pentru tranziții */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#register_step_1 .register-block {
    animation: fadeIn 0.5s ease-out;
}

/* Delay-uri pentru animație cascadă */
#register_step_1 .col-lg-4:nth-child(1) .register-block {
    animation-delay: 0.1s;
}

#register_step_1 .col-lg-4:nth-child(2) .register-block {
    animation-delay: 0.2s;
}

#register_step_1 .col-lg-4:nth-child(3) .register-block {
    animation-delay: 0.3s;
}

/* Fix pentru overflow pe ecrane foarte mici */
@media (max-width: 576px) {
    #register_step_1 .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    #register_step_1 .register-block h3 {
        font-size: 20px;
        word-wrap: break-word;
    }

    #register_step_1 .register-block p {
        font-size: 13px;
    }
}

