.custom-block-overlay {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.custom-block-overlay img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.custom-block-overlay .overlay-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.custom-block-overlay .overlay-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    max-width: 700px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.btn-discover {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background-color: #e64a19;
}

/* متجاوب للموبايل */
@media (max-width: 768px) {
    .custom-block-overlay .overlay-title {
        font-size: 24px;
        top: 15%;
    }

    .custom-block-overlay .overlay-text {
        font-size: 16px;
        top: 30%;
        padding: 0 10px;
    }

    .btn-discover {
        font-size: 16px;
        padding: 12px 25px;
        top: 50%;
    }
}

@media (max-width: 480px) {
    .custom-block-overlay .overlay-title {
        font-size: 20px;
        top: 12%;
    }

    .custom-block-overlay .overlay-text {
        font-size: 14px;
        top: 28%;
    }

    .btn-discover {
        font-size: 14px;
        padding: 10px 20px;
        top: 45%;
    }
}
