/* =========================
   FRONTEND CAROUSEL (SCOPED)
========================= */

.fc-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.fc-carousel .fc-container {
    min-height: calc(100vh - 120px); /* desktop */
}

/* =========================
   SLIDES
========================= */
.fc-carousel .fc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.fc-carousel .fc-slide.active {
    opacity: 1;
    z-index: 1;
}

/* DARK OVERLAY */
.fc-carousel .fc-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* =========================
   CONTENT
========================= */
.fc-carousel .fc-content {
    position: relative;
    max-width: 720px;
    padding: 40px;
    margin-left: 8%;
    color: #fff;
}

.fc-carousel .fc-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fc-carousel .fc-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.fc-carousel .fc-btn {
    display: inline-block;
    padding: 14px 34px;
    background: red;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   ARROWS
========================= */
.fc-carousel .fc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 32px;
    padding: 12px 18px;
    cursor: pointer;
    z-index: 2;
}

.fc-carousel .fc-prev { left: 20px; }
.fc-carousel .fc-next { right: 20px; }

/* =========================
   DOTS
========================= */
.fc-carousel .fc-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 2;
}

.fc-carousel .fc-dots span {
    width: 12px;
    height: 12px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
}

.fc-carousel .fc-dots span.active {
    background: red;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

    .fc-carousel .fc-container {
         min-height: calc(100vh - 80px);
    }

    .fc-carousel .fc-content {
        margin: auto;
        text-align: center;
    }

    .fc-carousel .fc-content h1 {
        font-size: 34px;
    }

    .fc-carousel .fc-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .fc-carousel .fc-content h1 {
        font-size: 26px;
    }

    .fc-carousel .fc-btn {
        padding: 12px 26px;
    }
}
