/* =========================================================
   Hero Section
   ========================================================= */

.hero-section {
    position: relative;
    color: var(--color-light);
    height: 80vh;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
    box-sizing: border-box;
}

/* Background Image */
.hero-section .hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;

    /* بدون أي تأثيرات */
    opacity: 1;
    transform: none;
}

/* Overlay */
.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 24, 56, 0.6);
    z-index: 1;
}

/* Content */
.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 90px);
    text-align: center;
}

/* Title */
.hero-section h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--color-light);
}

/* Breadcrumb */
.hero-breadcrumb {
    font-size: 1rem;
    color: var(--color-secondary);
}

.hero-breadcrumb a {
    color: var(--color-secondary);
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    text-decoration: underline;
}
