* {
  margin: 5px;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Rubik", serif;
    background-color: #ebeded; /* لون الخلفية العام */
    color: #597d90; /* لون النص الرئيسي */
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
}

header {
    background-color: #ebeded; /* لون الترويسة */

    color: #597d90; /* لون النص في الترويسة */
    display: flex;
    align-items: center;
    position: sticky;
    top: 0; /* يجعل العنوان يلتصق بأعلى الشاشة */
    z-index: 1000; /* لضمان ظهوره فوق العناصر الأخرى */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* تأثير ظل عند الثبات */
    width: 100%;
    
    display: flex;
}

.main_text_ad {
  margin: auto;
  padding: 25px;
  padding-top: 0px;
  font-size: 35px;
  animation: shake 2.5s  infinite; /* كل 3 ثوانٍ */
}
  @keyframes shake {
    0% { 
    transform: scale(1);}
  25% { 
    transform: scale(0.98);}
  50% { 
    transform: scale(1.01);}
  75% { 
    transform: scale(0.98);}
  100% { 
    transform: scale(1);}
}



.logo{
  margin: auto; /* توسيط الصورة */
}
.logo img {
  width: 100%; /* تمديد الصورة بعرض كامل العنصر */
  max-width: 400px; /* حد أقصى للعرض لتجنب التشوه */
  height: auto; /* الحفاظ على النسبة الأصلية للصورة */
  display: block; /* ضمان تنسيق الصورة بشكل جيد */

}
.login-icon {
  height: 40px; /* ضبط حجم أيقونة تسجيل الدخول */
  cursor: pointer; /* تغيير مؤشر الماوس عند المرور */
}

header h1 {
  display: none;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    margin-top: 15px;
    direction: rtl;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #597d90; /* لون الروابط */
    text-decoration: none;
    font-size: 24px;
}
#girls_button{
    background: #9c607d;
    border: 1px solid #9c607d;
}

#about {
    padding: 30px;
    background-color: #e8e8e8; /* خلفية القسم */
    line-height: 1.8;
    margin: 30px;
}
#about_text {
  font-size: 15px;
}

#slider {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
}

.image0 {
    width: 100%;
    height: auto;
    display: none;
}

.image0.active {
    display: block;
}

#slider .controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

#slider .controls button {
    background-color: #83acad; /* لون أزرار التحكم بالصور */
    border: none;
    color: #d4d4d6;
    padding: 10px;
    cursor: pointer;
}
#location {
  width: 90%;
}

footer {
    background-color: #597d90;
    padding: 20px;
    width: 100%;
    color: #d4d4d6;
}

footer a {
    color: #83acad;
    text-decoration: none;
}

iframe {
    width: 100%;
    border: none;
    margin: 20px 0;
}
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #597d90; 
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 40px;
  margin-bottom: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 10px;
    }
}
::selection {
  background: rgba(26, 188, 156, 0.3);
}
.wrapper {
  width: 100%;
  padding: 20px;
  place-items: center; /* محاذاة أفقية وعمودية في المنتصف */
  background: #ebeded;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  direction: rtl;
  text-align: center;
  
}
.wrapper .title {
  height: 120px;
  background: #597d90;
  border-radius: 5px 5px 0 0;
  color: #ebeded;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .row {
  height: 60px;
  margin-top: 15px;
  position: relative;
}
.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 70px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
}
form .row input:focus {
  border-color: #597d90;
}
form .row input::placeholder {
  color: #999;
}
.wrapper form .row i {
  position: absolute;
  width: 55px;
  height: 100%;
  color: #fff;
  font-size: 22px;
  background: #597d90;
  border: 1px solid #597d90;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass {
  margin-top: 12px;
}
.wrapper form .pass a {
  color: #597d90;
  font-size: 17px;
  text-decoration: none;
}
.wrapper form .pass a:hover {
  text-decoration: underline;
}
.wrapper form .button input {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #597d90;
  border: 1px solid #597d90;
  cursor: pointer;
}
form .button input:hover {
  background: #597d90;
}
.wrapper form .signup-link {
  text-align: center;
  margin-top: 45px;
  font-size: 17px;
}
.wrapper form .signup-link a {
  color: #597d90;
  text-decoration: none;
}
form .signup-link a:hover {
  text-decoration: underline;
}

