/* assets/css/styles.css */

.media-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-placeholder,
.video-placeholder {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: z-index 0.3s ease;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    transform: rotate(-10deg);
    z-index: 100;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 400px;
    height: 300px;
    transform: rotate(10deg);
    z-index: 50;
    margin-left: -100px;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}
