
body {
  font-family: 'Tahoma', sans-serif;
  direction: rtl;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #222;
}

a {
  color: #800000;
  text-decoration: none;
}

h1, h2, h3 {
  color: #800000;
}

.site-header {
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-title img {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  padding: 8px;
  font-weight: bold;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-actions .btn, .header-actions .social {
  padding: 6px 12px;
  background: #800000;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}

.welcome-msg {
  font-weight: bold;
  color: #444;
}

.section {
  padding: 40px 20px;
  margin: 20px auto;
  background: #fff;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.room-list, .news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.room-box, .news-box {
  background: #fefefe;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.room-box img, .news-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.gallery-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.service-list li {
  background: #eee;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background: #800000;
  color: #fff;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 5px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 1px solid #ccc;
  margin-top: 10px;
  border-radius: 8px;
}

.site-footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 20px 10px;
  margin-top: 30px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin: 10px 0 0;
}

.footer-links li a {
  color: #eee;
  font-weight: bold;
}
