/* static/css/custom.css */

:root {
    --bs-primary: #005A9C;
    --bs-primary-rgb: 0, 90, 156;
    --bs-success: #28a745;
    --bs-success-rgb: 40, 167, 69;
}

/* Stiluri pentru noul Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 60vh;
    min-height: 400px;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Suprapunere întunecată pentru lizibilitate */
}

.hero-content {
    position: relative;
    z-index: 2;
}