/*
Theme Name: bl
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom theme from scratch.
Version: 1.0
Tags: custom-theme
Text Domain: bl
*/

/* put the footer at the bottom*/
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* Ensure full height on all containers */

    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item,
    .carousel-slide-container {
        height: 100vh;
        min-height: 110vh;
        overflow: hidden;
    }

    @media (max-width: 768px) {
    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item,
    .carousel-slide-container {
        height: auto;
        min-height: 30vh;
        
    }
    }

    .carousel-slide-container img {
        object-fit: cover;
        object-position: center;
        height: 100%;
        width: 100%;
    }

    .carousel-caption-overlay {
        max-width: 90%;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 3rem);
        font-weight: bold;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .carousel-caption-overlay .btn {
        font-size: 1rem;
       padding: 0.75rem 1.5rem;
    }


iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

.page-template-booking-page header,
.page-template-booking-page footer {
    display: none !important;
}

@media (max-width: 768px) {

    .minimal-header,
    .minimal-footer {
        display: none;
    }

    .booking-frame {
        height: 100vh;
    }
}

/* blog page*/
.blog-section .card-img-top {
    object-fit: cover;
    height: 200px;
}
.nav-pills .nav-link {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.nav-pills .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

/* bag styling */
.badge {
    font-size: 0.75rem;
    text-transform: capitalize;
}

/* single post*/
.single-post-page h1 {
    font-size: 2rem;
}

.author-box {
    border-left: 4px solid #0d6efd;
}
.post-navigation a {
    max-width: 45%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* page php*/
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
}

.page-featured-image img {
    max-height: 450px;
    object-fit: cover;
}

.page-article {
    font-size: 1.05rem;
    line-height: 1.7;
}

.page-article h2, h3, h4 {
    margin-top: 2rem;
    font-weight: 600;
}

.page-content img {
    max-width: 100%;
    height: auto;
}
