/* Google Fonts Start */

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,400i,500,500i,600,600i,700,700i,800,800i&display=swap');

/* Google Fonts End */


/* ===== Slider Wrapper ===== */

.carousel-item {
    position: relative;
    height: 60vh;
    /* reduce height (adjust as needed: 50vh, 60vh, etc.) */
    min-height: 500px;
    /* fallback for very small screens */
    background: #000;
    color: #fff;
}


/* ===== Overlay ===== */

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* black overlay (60% opacity) */
    z-index: 1;
}


/* ===== Background Image Handling ===== */

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


/* ===== Centered Caption ===== */

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    /* above overlay */
    width: 70%;
    /* make it full width */
    max-width: none;
    /* remove Bootstrap's default limit */
    padding: 0 15px;
    /* keep a little padding for mobile */
    white-space: normal;
    /* allow wrapping naturally */
}

.carousel-caption h5 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}

.carousel-caption h5 span {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff0000;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    text-shadow: 0.5px 0.5px 0 #fff, 0.5px 1px 0 #fff, 1px 0.5px 0 #fff, 0.5px 0.5px 0 #fff;
    /* creates white outline */
}

.carousel-caption p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ddd;
    font-family: 'Open Sans', sans-serif;
}

.fnt-fam {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}


/* ===== CTA Buttons ===== */

.carousel-caption .btn {
    margin: 0 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.carousel-caption .btn-primary {
    background: #ff0000;
    border: none;
    color: #fff;
}

.carousel-caption .btn-primary:hover {
    background: #ff0000;
}

.carousel-caption .btn-outline-light {
    border: 2px solid #ffcc00;
    color: #fff;
}

.carousel-caption .btn-outline-light:hover {
    background: #fff;
    color: #000;
}


/* ===== Mobile Adjustments ===== */

@media (max-width: 768px) {
    .carousel-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
        text-align: center;
        z-index: 2;
        /* above overlay */
        width: 100%;
        /* make it full width */
        max-width: none;
        /* remove Bootstrap's default limit */
        padding: 0 15px;
        /* keep a little padding for mobile */
        white-space: normal;
        /* allow wrapping naturally */
    }
    .carousel-caption h5 {
        font-size: 1.5rem;
    }
    .carousel-caption p {
        font-size: 0.9rem;
    }
    .carousel-caption .btn {
        margin: 5px 5px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .fb-col {
        margin-bottom: 40px;
        /* adjust space as you like */
    }
}

.fb-wrapper {
    max-width: 100% !important;
}

.fb-page {
    width: 100% !important;
}