.cover-photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}


.event-details-container {
    background-color: #29283c;
    color: #fff;
    margin-top: -20px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.detail-item i {
    font-size: 1.5rem;
    color: #c792ea;
    margin-right: 10px;
}

.detail-text {
    font-size: 1rem;
}

.event-website {
    display: inline-block;
    background-color: #c792ea;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.event-website:hover {
    background-color: #a56de2;
}


@media (max-width: 768px) {
    .cover-photo {
        height: 200px;
    }

    .event-details-container {
        padding: 20px;
    }
}