/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #586A30; /* Dark green background */
  text-align: center;
  direction: rtl;
  overflow: hidden; /* منع أي تجاوزات */
  height: 100vh; /* جعل الجسم يأخذ ارتفاع الشاشة بالكامل */
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  flex: 1; /* يجعل القسم الرئيسي يأخذ الفضاء المتاح */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.logo-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5dc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.hero h1 {
  font-size: 2.5em;
  color: white;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2em;
  color: #eae9d7;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fff;
  color: #4c6b5a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #eae9d7;
  color: #3a5546;
}

/* Footer */
.footer {
  background-color: #eae9d7;
  color: #4c6b5a;
  padding: 20px 0;
  font-size: 0.95em;
  flex-shrink: 0; /* يمنع توسيع футера */
}

/* Responsive */
@media (max-width: 768px) {
  .logo-wrapper {
    width: 150px;
    height: 150px;
  }

  .hero h1 {
    font-size: 2em;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.95em;
  }
}