/* إعدادات عامة */
body {
  font-family: 'Tahoma', sans-serif;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  margin: 0;
  padding: 50px 20px;
  color: #4a2c2a;
  text-align: center;
  direction: rtl;
}

/* الصندوق الرئيسي */
.container {
  background: #fff8e1;
  padding: 30px;
  border-radius: 20px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 8px 20px rgba(253, 160, 133, 0.4);
}

/* العناوين */
h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ff6f61;
  text-shadow: 1px 1px 3px #f6b08e;
}

/* حقل الإدخال */
input {
  padding: 12px;
  width: 80%;
  margin: 10px auto;
  border: 2px solid #ffb88c;
  border-radius: 15px;
  font-size: 1.1em;
  text-align: center;
  background-color: #fff3e0;
  color: #6f4e37;
  transition: border-color 0.3s;
}

input:focus {
  outline: none;
  border-color: #ff6f61;
  background-color: #fff0db;
}

/* الأزرار */
button, .button {
  padding: 12px 25px;
  font-size: 1.2em;
  background-color: #ff6f61;
  border: none;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 10px rgba(255, 111, 97, 0.4);
}

button:hover, .button:hover {
  background-color: #e85c50;
  transform: scale(1.05);
}

/* رابط المعايدة */
.link-output {
  margin-top: 25px;
  word-wrap: break-word;
  font-size: 1.2em;
  color: #6f4e37;
  font-weight: 600;
}

/* مشاركة واتساب */
.whatsapp {
  margin-top: 25px;
  display: inline-block;
}

.whatsapp img {
  width: 45px;
  vertical-align: middle;
  filter: drop-shadow(1px 1px 1px #ffa07a);
}

/* معايدة */
.greeting {
  background: #fff3e0;
  padding: 35px;
  border-radius: 25px;
  max-width: 650px;
  margin: auto;
  font-size: 1.5em;
  line-height: 2.2;
  white-space: pre-line;
  color: #6f4e37;
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.25);
}

/* صورة الخروف */
.sheep {
  width: 140px;
  margin-top: 30px;
  filter: drop-shadow(2px 2px 4px #ffb88c);
}

/* زر الرجوع */
#backBtn {
  display: inline-block;
  margin-top: 35px;
  padding: 12px 30px;
  background-color: #ff6f61;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 5px 10px rgba(255, 111, 97, 0.4);
}

#backBtn:hover {
  background-color: #e85c50;
  transform: scale(1.05);
}

.company-banner {
  background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 4px solid #ff6f61;
  flex-wrap: wrap;
  box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.left-banner {
  display: flex;
  align-items: center;
}

.right-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.logo {
  height: 50px;
  width: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 0.5));
}

.logo:hover {
  transform: scale(1.1);
}

.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4a2c2a;
  text-shadow: 1px 1px 2px #fff3e0;
}

.powered-text {
  font-size: 0.9rem;
  color: #6f4e37;
  font-style: italic;
  margin-top: 0.2rem;
  opacity: 0.9;
}

