/* ملف assets/css/main.css */

/* الأساسيات والأنماط العامة */
:root {
  --primary-color: #1e3c72;
  --secondary-color: #2a5298;
  --light-bg: #f8f9fa;
  --shadow: 0 2px 4px rgba(0,0,0,.1);
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--light-bg);
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* شريط التنقل */
.navbar {
  box-shadow: var(--shadow);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.dropdown-menu {
  text-align: right;
}

/* قسم البطل (Hero Section) */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 0 0 20px 20px;
  color: white;
  padding: 4rem 0;
}

/* شريط الأخبار العاجلة */
.breaking-news-ticker {
  background-color: var(--light-bg);
  padding: 8px 15px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-content a {
  margin-right: 30px;
  position: relative;
  color: #333;
  font-weight: bold;
}

.ticker-content a:hover {
  color: var(--primary-color);
}

.ticker-content a:after {
  content: "•";
  position: absolute;
  right: -20px;
  color: #ccc;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* البطاقات والصور */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
}

.card-img-top-container {
  position: relative;
  overflow: hidden;
}

.card-img-top {
  transition: transform 0.3s ease;
  width: 100%;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.object-fit-cover {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* التنبيهات */
.alert {
  border-radius: 0;
  border-left: 4px solid;
}

/* تنسيقات للهواتف والأجهزة الصغيرة */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section img {
    margin-top: 1.5rem;
    max-width: 80%;
  }
  
  .breaking-news-ticker {
    display: none;
  }
  
  .navbar-nav {
    margin-top: 15px;
  }
  
  .dropdown-menu {
    position: static;
    float: none;
  }
  
  .card {
    margin-bottom: 1rem;
  }
}

/* تحسينات إضافية للواجهات الحديثة */
@media (min-width: 992px) {
  .hero-section {
    padding: 5rem 0;
  }
}