
/* بنەڕەتی گشتی */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  line-height: 1.6;
  color: #333;
}

/* Main Header */
.main-header {
  background: linear-gradient(135deg, #ff7f50, #ff4500);
  color: white;
  padding: 15px 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
}

.main-header h1 {
  margin: 0;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-weight: bold;
}

.menu-btn {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 28px;
  cursor: pointer;
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

/* مۆبایل مینوو */
.nav-menu ul {
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-menu li {
  margin: 5px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}

.nav-menu a:hover {
  background: white;
  color: #ff4500;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .main-header h1 {
    font-size: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 300px;
    background: linear-gradient(180deg, #ff7f50, #ff4500);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 80px 20px 20px;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0,0,0,0.3);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu li {
    margin: 0;
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
    padding: 18px 25px;
    font-size: 1.1rem;
    border-radius: 15px;
  }
}

/* overlay بۆ مۆبایل مینوو */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  backdrop-filter: blur(3px);
}

.nav-overlay.active {
  display: block;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin-top: 50px;
    color: #666;
    font-size: 1rem;
    border-top: 3px solid #ff6600;
}

@font-face {
  font-family: 'footer';
  src: url('../fonts/K24KurdishLight-Light.ttf') format('truetype');
}
footer p {
  font-family: 'footer', 'Segoe UI', sans-serif !important;
}