/* Estils per a la pàgina d'inici */
.home-container {
    padding: 1rem 0;
}

.welcome-section {
    background: linear-gradient(135deg, #0056b3 0%, #17a2b8 100%);
    color: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
    position: relative;
}

.welcome-section h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.welcome-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.season-badge-large {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 1rem;
    background-color: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 1rem;
    font-weight: 600;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.card-header h2, .card-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

.list-group-item {
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

/* Estils de destaca per a la secció de quotes */
.text-success {
    color: #28a745 !important;
}

.table th {
    border-top: none;
}

/* Estils per als botons */
.btn {
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger {
    color: white;
}

.btn-primary:hover, .btn-success:hover, .btn-info:hover, .btn-warning:hover, .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Animacions addicionals */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-section, .card {
    animation: fadeIn 0.8s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-section {
        padding: 1.5rem;
    }
    
    .card-header h2, .card-header h3 {
        font-size: 1.25rem;
    }
}
