/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  font-family: 'Arial', sans-serif;
  background-color: #fdfdfd;
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: center;
}

header {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  margin: 10px 0 5px;
  font-size: 2em;
  color: #333;
}

nav {
  margin-top: 15px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #d17da6;
  font-weight: bold;
}

nav a:hover {
  color: #b56c91;
}

h2 {
  color: #444;
  margin-top: 30px;
}

p {
  font-size: 1.1em;
  color: #555;
  margin: 15px 20px;
}

.buttons {
  margin: 30px 0;
}

.button {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background-color: #d17da6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #b56c91;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px;
}

.gallery img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #999;
  padding: 20px;
  background-color: #fafafa;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }
}