/* ===== Profile Styles ===== */
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(5, 150, 105, 0.92), rgba(5, 150, 105, 0.92)),
                var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: #f59e0b;
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Card Design */
.content-card {
    border-left: 5px solid #059669;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 2rem;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-bottom: 1px solid #dcfce7;
}

.card-body {
    padding: 1.5rem;
}

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    background-color: #f9fafb;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    display: inline-block;
    padding: 0 0.5rem;
    color: #6b7280;
}

.breadcrumb-link {
    color: #374151;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #059669;
    text-decoration: none;
}

/* Content Text */
.content-text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4b5563;
    font-size: 1.05rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
        background-attachment: scroll;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section p {
        font-size: 0.7rem;
    }

    .content-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .card-header h2 {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .content-text {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .card-body {
        padding: 2rem;
    }
}
