/* Page Hero Section */
.page-hero {
    position: relative;
    background-image: url('https://sumselenergi.com/wp-content/uploads/2024/06/plts-e1718099615388.jpg');
    /* Default Image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 340px;
    /* Default height */
    display: flex;
    align-items: center;
    margin-top: 0;
    color: white;
    overflow: hidden;
}

/* Overlay */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
    /* #003366 with opacity */
    z-index: 1;
}

/* Content */
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding-top: 2rem;
}

/* Title */
.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: slideDownFade 0.8s ease-out forwards;
}

/* Breadcumb Navigation */
.page-hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-separator {
    font-size: 0.8rem;
    opacity: 0.6;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-hero {
        height: 220px;
    }

    .page-hero-title {
        font-size: 1.8rem;
    }

    .page-hero-breadcrumb {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}