/* Stile per l'header con onda sfumata */
.breadcrumb-area {
    position: relative;
    padding: 130px 0 135px;
    background-image: url('../assets/images/breadcrumb-bg.jpg');
    background-position: center;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3b5998, #4e9eed);
    opacity: 0.85;
    z-index: -1;
}

.breadcrumb-area::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../assets/images/wave-shape.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.container.mt-n5, .content-after-breadcrumb .container:first-child {
    position: relative;
    margin-top: -100px !important;
    z-index: 5;
}

/* Stile per il contenuto dopo il breadcrumb */
.content-after-breadcrumb {
    position: relative;
    z-index: 5;
}
