/* أنماق قسم البطل (Hero Section) - تصميم محسّن */

.jojo {
    background-color: rgb(241, 133, 93);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-top: 5rem;
    color: #f9f2f2;
    border-radius: 0;
}

.jojo h2 {
    text-align: right;
    margin-right: 1rem;
    padding-top: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.jojo h4 {
    text-align: right;
    margin-right: 3rem;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.joj {
    width:100%;
    height: 350px;
                background: linear-gradient(135deg, #2c3e50 0%, #345e42 100%);
    align-items: center;
    justify-self: center;
    text-align: center;
    color: #f9f2f2;
    border-radius: 0;
}

.map {
    padding-top: 25px;
}

.pagen {
    width: 100%;
    background-image: url(/assets/images/meetings-bg.jpg);
    height: 60hv;
    align-items: center;
    text-align: center;
    justify-self: center;
}

.pang {
    width: 100%;
    height: 70hv;
    align-items: center;
    text-align: center;
    justify-self: center;
}

.pagenh1 {
    font-family: "Noto Kufi Arabic", sans-serif;
    padding-top: 155px;
    font-size: 50px;
    color: #faf9f9;
    background-image: url(/assets/images/meetings-bg.jpg);
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.226);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-section:hover .hero-image-container img {
    transform: scale(1.1);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.048) 0%, rgba(0, 0, 0, 0.103) 30%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0.418) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    color: #ffffff;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1.2s ease-out;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    max-width: 900px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out 0.4s both;
    letter-spacing: 1px;
}

.hero-content>* {
    position: relative;
    z-index: 2;
}


/* تأثيرات الحركة محسّنة */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/* تصميم متجاوب محسّن */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 500px;
        border-radius: 20px;
    }
    .hero-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
    .hero-subtitle {
        font-size: 1.3rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        height: 400px;
        border-radius: 15px;
    }
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    .hero-title::after {
        width: 70px;
    }
}