.intro {
    background: url('/intro.jpg') no-repeat center center/cover; /* الصورة في public_html */
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro h1 {
    font-size: 36px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}