* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #FFF9E5;
  color: #004030;
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* الهيدر */
.navbar {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000; /* أعلى من الإعلانات */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  gap: 20px;
  direction: ltr;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

/* اللوغو */
.logo a {
  font-size: 1.5em;
  font-weight: bold;
  color: #004030;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 10px;
  flex-shrink: 0;
}

/* زر اللغة */
.lang-toggle {
  background-color: transparent;
  border: 2px solid #004030;
  color: #004030;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  margin-right: 10px;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
  flex-grow: 0;
  width: auto;
  min-width: unset;
}

.lang-toggle:hover {
  background-color: #004030;
  color: #FFF9E5;
}

/* الحاوية الرئيسية */
.container {
  flex: 1;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* النموذج */
form {
  margin-bottom: 20px;
  width: 100%;
}

/* الحقول */
input[type="text"],
select,
button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  background-color: #FFF;
  color: #004030;
}

/* زر التحميل */
button {
  background-color: #4A9782;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #3e7f6d;
}

/* الصور */
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* الفوتر */
footer {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #555;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
}

/* إعلانات لسطح المكتب */
.ad-left, .ad-right {
  position: absolute;
  top: 90px; /* يبدأ تحت الهيدر */
  width: 120px;
  height: 600px;
  background: transparent;
  z-index: 999;
 
}

.ad-left {
  left: 0;
  transform: translateX(-130px); /* مخفية خارج الشاشة بالوضع الافتراضي */
  
}

.ad-right {
  right: 0;
  transform: translateX(130px) translateY(50px); /* خارج الشاشة + نزول 50px */
  

}

/* إعلانات للموبايل */
.ad-top, .ad-bottom {
  width: 100%;
  height: 90px;
  background: transparent;
  text-align: center;
  position: sticky;
  z-index: 999;
}

.ad-top {
  top: 90px; /* تحت الهيدر مباشرة */
  transform: translateY(-160px); /* خارج الشاشة افتراضياً */
}

.ad-bottom {
  bottom: 0;
 /*  transform: translateY(100px); خارج الشاشة افتراضياً */
}

/* عرض فقط على الديسكتوب */
.desktop-only {
  display: block;
}

/* عرض فقط على الموبايل */
.mobile-only {
  display: none;
}

/* ميديا كويري للموبايل */
@media screen and (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }

  /* بالموبايل نخلي الإعلانات ضمن العرض */
  .ad-left, .ad-right {
    display: none;
  }

  .ad-top {
    transform: translateY(0);
  }

  .ad-bottom {
    transform: translateY(0);
  }
}

/* ميديا كويري للديسكتوب */
@media screen and (min-width: 769px) {
  .ad-left {
    transform: translateX(0);
  }

  .ad-right {
    transform: translateX(50px);
  }

  .ad-top, .ad-bottom {
    display: none;
  }
}
