.cover {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    font-family: "Comfortaa", sans-serif;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.overlay {
    background-color: rgba(244, 237, 255, 0.712);
    height: 100%;
    padding: 100px 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: 120px;
    color: rgb(134, 76, 0);
}

.lead {
    font-size: 40px;
    letter-spacing: 1.5px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cover {
        height: 250px;
    }
    
    .overlay {
        padding: 50px 100px;
    }

    .overlay h1 {
        font-size: 1.8rem;
    }

    .overlay p {
        font-size: 1rem;
    }
}