/* Banok Safaris Clone CSS for Hotels */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Inter:wght@400;500;600;700;800&display=swap');

.banok-breadcrumb {
    position: relative;
    /* Use a lodge background similar to the reference */
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    margin-bottom: 80px;
}
.banok-breadcrumb::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.25); /* Subtle dark overlay so white text pops */
}
.banok-breadcrumb .container {
    position: relative;
    height: 100%;
    z-index: 2;
}
.banok-breadcrumb-inner {
    height: 100%;
    display: flex;
    align-items: center; /* Vertically center the heading */
}
.banok-breadcrumb-inner h2.heading-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Floating white box for breadcrumb */
.breadcrumb-box {
    position: absolute;
    right: 15px; /* Stay inside container padding */
    bottom: 0;
    background: #fdfdfd;
    padding: 15px 35px;
    border-radius: 6px 6px 0 0;
}
.breadcrumb-box .breadcrumb {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.breadcrumb-box .breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-box .breadcrumb a:hover {
    color: #000;
}
.breadcrumb-box .breadcrumb .active {
    color: #000;
}

.gsc-heading {
    text-align: center;
    margin-bottom: 60px;
}
.gsc-heading .sub-title {
    font-family: 'Caveat', cursive !important;
    font-size: 36px !important;
    font-weight: 600;
    color: #111 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: -5px !important;
    display: block;
}
.gsc-heading .title {
    font-family: 'Inter', sans-serif !important;
    font-size: 46px !important;
    font-weight: 800 !important;
    color: #111;
    margin: 0;
}

.banok-grid {
    margin: 0 auto 60px auto;
    max-width: 1140px; /* Constrain exactly to Elementor default boxed width */
}
.banok-grid-item {
    margin-bottom: 40px;
    text-align: center;
}
.banok-grid-item a {
    text-decoration: none;
    display: block;
}
.banok-grid-item .img-wrapper {
    overflow: hidden;
    margin-bottom: 20px;
}
.banok-grid-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.banok-grid-item:hover img {
    transform: scale(1.05);
}
.banok-grid-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0;
    transition: color 0.3s;
}
.banok-grid-item:hover h3 {
    color: #efae02;
}
