/* ===================================
   استيراد خط Cairo العربي
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

/* ===================================
   تنسيق اللوجو والسلوجان في Hero Section
   =================================== */

.logo-slogan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
    padding: 20px 20px 80px;
    margin-top: 0;
    margin-bottom: 60px;
}


.logo-wrapper {
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-in-out;
}

.hero-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.slogan-wrapper {
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
    animation-delay: 0.3s;
    animation-fill-mode: backwards;
}

.arabic-slogan {
    font-family: 'Cairo', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    margin: 0;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.arabic-slogan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   الأنيميشن
   =================================== */

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

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

/* ===================================
   Responsive للموبايل والتابلت
   =================================== */

@media (max-width: 991px) {
    .logo-slogan-container {
        min-height: 250px;
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .arabic-slogan {
        font-size: 30px;
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {
    .logo-slogan-container {
        min-height: 250px;
        padding: 20px 10px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .arabic-slogan {
        font-size: 28px;
        padding: 10px 20px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575px) {
    .hero-logo {
        max-width: 200px;
    }
    
    .arabic-slogan {
        font-size: 24px;
        padding: 8px 15px;
    }
}
