section.most-liked-section {
    margin: 0;
    padding: 0;
    background-color: #000;
}

.most-liked-heading {
    margin: 0;
    width: 100%;
    background-color: black;
    background-image: repeating-linear-gradient(
            45deg,
            rgba(0, 255, 0, 0.05),
            rgba(0, 255, 0, 0.05) 10px,
            transparent 10px,
            transparent 20px
    );
    padding: 3rem 1rem;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-top: 2px solid limegreen;
    border-bottom: 2px solid limegreen;
    text-shadow: 0 0 8px rgba(50, 205, 50, 0.5);
    box-shadow: 0 0 12px rgba(50, 205, 50, 0.3);
}

/* === Carousel Section === */
.hero-carousel {
    border-top: 2px solid limegreen;
    border-bottom: 2px solid limegreen;
    max-width: 100%;
    height: 600px;
    min-height: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background-color: white;
}

/* === Slide Track === */
.carousel-track {
    height: 100%;
    position: relative;
}

/* === Slide === */
.carousel-slide {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1920px auto; /* 🔒 Lock width of image */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    position: absolute;
}

/* === Content === */
.carousel-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 700px;
    width: 90%;
    /*border: limegreen;*/
    /*box-shadow: 0 0 24px rgba(0, 255, 0, 0.4);*/
}

.carousel-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
    /*text-shadow: 0 0 5px limegreen,*/
    /*0 0 12px limegreen;*/
}

.carousel-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: white;
    /*text-shadow: 0 0 5px rgba(0, 255, 0, 0.2);*/
}

/* === Button === */
.carousel-button {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    background-color: #00c853;
    color: black;
    border: limegreen;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: bold;
    box-shadow: 0 0 14px rgba(0, 255, 0, 0.6);
}

.carousel-button:hover {
    background-color: limegreen;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

/* === Arrows === */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: limegreen;
    color: #00c853;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.carousel-arrow.left {
    left: 15px;
}

.carousel-arrow.right {
    right: 15px;
}

/* === Responsive === */
@media (max-width: 1024px) {

    .carousel-content {
        padding: 1.5rem 2rem;
        max-width: 90%;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .most-liked-section {
        display: none;
    }

    .hero-carousel {
        display: none;
    }

}

