/* Page Title Hero Section - Premium Design */

.page-title-hero {
    position: relative;
    min-height: 120px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* Background Layer */
.page-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-title-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Overlay Layers */
.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 24, 16, 0.7) 0%,
        rgba(26, 15, 8, 0.85) 50%,
        rgba(44, 24, 16, 0.8) 100%
    );
    z-index: 1;
}

.page-title-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(212,165,116,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

/* Content */
.page-title-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 20px;
}

.page-title-wrapper {
    max-width: 900px;
    width: 100%;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon */
.page-title-icon {
    font-size: 36px;
    color: #d4a574;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

/* Quote Section */
.page-title-quote {
    margin: 0;
    padding: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.quote-text {
    font-family: 'Great Vibes', cursive;
    font-size: 38px;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.quote-author {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    color: #d4a574;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Divider */
.page-title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    margin: 35px auto;
    animation: scaleIn 0.8s ease-out 0.4s both;
}

@keyframes scaleIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Breadcrumb Navigation */
.page-title-breadcrumb {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.breadcrumb-item a {
    color: #c9c9c9;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4a574;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.breadcrumb-item a:hover {
    color: #d4a574;
}

.breadcrumb-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.breadcrumb-item.active {
    color: #d4a574;
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #d4a574;
    margin-left: 12px;
}

/* Scroll Indicator */
.page-title-scroll-indicator {
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.page-title-scroll-indicator i {
    font-size: 24px;
    color: #d4a574;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-title-hero {
        min-height: 500px;
    }

    .quote-text {
        font-size: 42px;
    }

    .page-title-icon {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .page-title-scroll-indicator {
        margin-top: 45px;
    }
}

@media (max-width: 768px) {
    .page-title-hero {
        min-height: 450px;
        padding: 50px 15px;
    }

    .page-title-content {
        padding: 40px 15px;
    }

    .quote-text {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .quote-author {
        font-size: 14px;
    }

    .page-title-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .page-title-divider {
        width: 80px;
        margin: 25px auto;
    }

    .breadcrumb-list {
        gap: 8px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .page-title-scroll-indicator {
        margin-top: 35px;
    }

    .page-title-scroll-indicator i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-title-hero {
        min-height: 380px;
        padding: 40px 10px;
    }

    .page-title-content {
        padding: 30px 10px;
    }

    .quote-text {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .quote-author {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .page-title-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-title-divider {
        width: 60px;
        margin: 20px auto;
    }

    .breadcrumb-list {
        gap: 6px;
        font-size: 11px;
    }

    .breadcrumb-item {
        font-size: 11px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 6px;
    }

    .page-title-scroll-indicator {
        margin-top: 25px;
    }

    .page-title-scroll-indicator i {
        font-size: 18px;
    }
}

/* Parallax Effect for Desktop */
@media (min-width: 992px) {
    .page-title-image {
        will-change: transform;
        background-attachment: fixed;
    }
}
