/* ===================================================
   PREMIUM INNER-PAGE HERO SECTION
   Used by: TourPlaces.php, hotel.php, contact.php
   =================================================== */

/* --- Base hero wrap override for inner pages --- */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Multi-layer overlay: dark gradient + subtle color tint */
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(15, 40, 25, 0.78) 0%,
            rgba(30, 20, 10, 0.62) 60%,
            rgba(241, 93, 48, 0.18) 100%
        );
    z-index: 1;
}

/* Decorative animated blobs */
.page-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
    animation: blob-drift 12s ease-in-out infinite alternate;
}
.page-hero__blob--1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #f15d30, transparent 70%);
    top: -120px;
    right: -80px;
    animation-delay: 0s;
}
.page-hero__blob--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #20c997, transparent 70%);
    bottom: -100px;
    left: -60px;
    animation-delay: -5s;
}

@keyframes blob-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 20px) scale(1.1); }
}

/* Content container */
.page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Breadcrumb pill */
.page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 22px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s;
}
.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero__breadcrumb a:hover {
    color: #f15d30;
}
.page-hero__breadcrumb .sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
}
.page-hero__breadcrumb .current {
    color: #f15d30;
    font-weight: 600;
}

/* Decorative tag line above heading */
.page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f15d30;
}
.page-hero__tag::before,
.page-hero__tag::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: #f15d30;
    border-radius: 2px;
}

/* Main page title */
.page-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.page-hero__title span {
    color: #f15d30;
    position: relative;
    display: inline-block;
}

/* Subtitle */
.page-hero__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Animated bottom wave divider */
.page-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}
.page-hero__wave svg {
    display: block;
    width: 100%;
    height: 54px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .page-hero {
        min-height: 300px;
        background-attachment: scroll;
    }
    .page-hero__content {
        padding: 70px 20px 50px;
    }
}
@media (max-width: 576px) {
    .page-hero {
        min-height: 260px;
    }
    .page-hero__content {
        padding: 60px 16px 44px;
    }
    .page-hero__title {
        font-size: 1.75rem;
    }
}
