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

header {
  background: linear-gradient(90deg, #8e44ad, #f39c12);
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.logo {
  height: 60px;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.2em;
  margin: 0;
  color: #fff8e1;
  font-weight: 500;
}

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

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffeb3b;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

h1, h2 {
  color: #222;
  text-align: center;
}

button {
  background: linear-gradient(90deg, #f39c12, #f1c40f);
  color: #222;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #e67e22, #f39c12);
}

form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

form button {
  width: auto;
}

#gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

#gallery-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#gallery-container img:hover {
  transform: scale(1.03);
}

#video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
html {
  scroll-behavior: smooth;
}
.intro-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 10px;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.cta-button {
  text-decoration: none;
  background: linear-gradient(90deg, #8e44ad, #f39c12);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

ul {
  list-style: none;
  padding: 0;
  line-height: 2em;
  font-size: 1.1em;
}

ul li::before {
  content: "• ";
  color: #f39c12;
  margin-left: 5px;
}

footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9em;
  background-color: #f0f0f0;
  margin-top: 60px;
}

.admin-link {
  color: #888;
  text-decoration: none;
}

.admin-link:hover {
  text-decoration: underline;
}
