@font-face {
    font-family: "Tajawal";
    src: url("../font/Tajawal-Regular.ttf") format("truetype");
}

:root {
  --primary: #1f737e;
  --secondary: #e65a39;
}

body {
  font-family: "Tajawal", sans-serif;
  scroll-behavior: smooth;
  background-color: #121212;
  color: #e0e0e0;
}

.navbar {
  background-color: #000 !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary) !important;
}


/****** MAIN *****/
.blog-article {
    margin-top: 60px;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.blog-article::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0,123,255,0.15), transparent 60%);
  animation: pulse 6s infinite linear;
}

@keyframes pulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #e65a39, #1f737e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-meta {
  font-size: 0.9rem;
  color: #bbb;
}

.blog-image-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.blog-image {
    transition: transform 0.6s ease;
    width: 100%;
}
.blog-image:hover {
  transform: scale(1.05);
}

.blog-content {
  color: #e0e0e0;
  text-align: justify;
  font-size: 1.1rem;
}



/****** footer ******/
footer {
  background: #092226;
  color: #fff;
  padding: 20px 0;
}

footer a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--secondary);
}

/* تعديل الأقسام ذات الخلفيات الفاتحة لتتناسب مع الداكن */
section.bg-light {
  background-color: #1f1f1f !important;
}


/* الحاوية */
#cat-paws {
  position: fixed;
  inset: 0;
  pointer-events: none; /* عشان ما يمنع الكليك */
  z-index: 9999;
}

.cat-paw {
  position: absolute;
  width: 100px;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 2s ease-in-out;
}
.cat-paw img {
  width: 100%;
}
