/* Page Title Parallax Background Styles */
.page-title-parallax-background {
    position: relative;
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-title-parallax-background.half-section {
    min-height: 50vh;
}

/* Gradient overlay */
.opacity-extra-medium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient-dark-gray-brown {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(45, 45, 45, 0.6) 100%);
}

/* Content styling */
.page-title-extra-large {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.page-title-extra-large h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 0;
    color: var(--clr-neutral-000, #ffffff);
}

.page-title-extra-large h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 10px;
    opacity: 0.7;
    color: var(--clr-neutral-000, #ffffff);
}

/* Breadcrumb styling */
.breadcrumb-style-01 {
    background: transparent;
    padding: 0;
    margin: 20px 0 0 0;
    font-size: 15px;
}

.breadcrumb-style-01 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb-style-01 ul li {
    position: relative;
    color: var(--clr-neutral-000, #ffffff);
}

.breadcrumb-style-01 ul li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    opacity: 0.6;
}

.breadcrumb-style-01 ul li a {
    color: var(--clr-neutral-000, #ffffff);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-style-01 ul li a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title-parallax-background {
        min-height: 40vh;
        background-attachment: scroll;
    }
    
    .page-title-extra-large {
        padding: 40px 0;
    }
    
    .breadcrumb-style-01 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .page-title-parallax-background {
        min-height: 35vh;
    }
    
    .page-title-extra-large {
        padding: 30px 0;
    }
}

/* Small screen adjustments */
.small-screen {
    min-height: 300px;
    justify-content: center;
}

/* Utility classes */
.text-white {
    color: var(--clr-neutral-000, #ffffff) !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.ls-0px {
    letter-spacing: 0 !important;
}

.ls-minus-1px {
    letter-spacing: -1px !important;
}

.opacity-7 {
    opacity: 0.7 !important;
}

.mb-10px {
    margin-bottom: 10px !important;
}
