/* home_page.css */

/* عزل الأنماط داخل حاوية #home-page */
#home-page {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ترويسة الصفحة (Hero Section) مع Video */
#home-page .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Video Background */
#home-page .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* تأكد من أن الفيديو خلف المحتوى */
}

/* محتوى الترويسة */
#home-page .hero-content {
    position: relative;
    z-index: 1; /* تأكد من أن المحتوى فوق الفيديو */
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeInUp 2s ease-out;
}

/* تنسيقات العناوين والفقرات في الترويسة */
#home-page .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#home-page .hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* قسم الكليات */
#home-page .colleges-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#home-page .colleges-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

#home-page .colleges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#home-page .college-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#home-page .college-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#home-page .college-icon {
    font-size: 50px;
    color: #ff6600;
    margin-bottom: 15px;
}

#home-page .college-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

#home-page .college-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#home-page .college-card a:hover {
    background-color: #e65c00;
}

/* قسم الأقسام */
#home-page .departments-section {
    padding: 60px 20px;
    text-align: center;
}

#home-page .departments-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

#home-page .departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#home-page .department-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

#home-page .department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#home-page .department-icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
}

#home-page .department-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

#home-page .department-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#home-page .department-card a:hover {
    background-color: #0056b3;
}

/* قسم الأخبار والفعاليات */
#home-page .news-section {
    padding: 60px 20px;
    text-align: center;
}

#home-page .news-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}



#home-page .news-card {
    min-width: 300px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

#home-page .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#home-page .news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

#home-page .news-card .news-content {
    padding: 15px;
}

#home-page .news-card .news-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 10px;
}

#home-page .news-card .news-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

#home-page .news-card .news-content a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#home-page .news-card .news-content a:hover {
    background-color: #e65c00;
}

/* قسم الخدمات */
#home-page .services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#home-page .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

#home-page .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#home-page .service-card {
    width: 300px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

#home-page .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#home-page .service-icon {
    font-size: 50px;
    color: #ff6600;
    margin-bottom: 20px;
}

#home-page .service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

#home-page .service-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

#home-page .service-card a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

#home-page .service-card a:hover {
    background-color: #e65c00;
}

/* تذييل الصفحة */
#home-page .footer-home {
    background-color: #343a40;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#home-page .footer-home p {
    margin: 10px 0;
    font-size: 1rem;
}

/* تأثيرات الأنيميشن */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home-page .animate-fadeInUp {
    animation: fadeInUp 1s ease-in-out;
}

/* استجابة الشبكة لمختلف الأجهزة */
@media (max-width: 1200px) {
    #home-page .hero-content h1 {
        font-size: 2.5rem;
    }

    #home-page .hero-content p {
        font-size: 1.2rem;
    }

    #home-page .colleges-section h2,
    #home-page .news-section h2,
    #home-page .services-section h2,
    #home-page .departments-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #home-page .colleges-grid,
    #home-page .departments-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    #home-page .news-carousel {
        flex-direction: column;
        align-items: center;
    }

    #home-page .news-card {
        min-width: 100%;
    }
}

/* تذييل الصفحة المخصص */
.custom-footer {
    background-color: #222;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.custom-footer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 768px) {
    .custom-footer p {
        font-size: 0.9rem;
    }
}

