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

header.hero {
  background-color: #004080;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

header.hero nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.gallery {
  padding: 40px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #ccc;
}

.content {
  padding: 30px 20px;
  max-width: 800px;
  margin: auto;
}

.contact form {
  margin-top: 20px;
}

.contact input, .contact textarea, .contact button {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact button {
  background-color: #0074d9;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #25D366;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}
.hero{
  color: white;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 20px 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-links {
  margin-top: 10px;
  font-size: 1em;
}
.social-links a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}


/* Responsive styles */
@media (max-width: 768px) {
  header.hero, .content, .gallery, footer {
    padding: 20px 15px;
  }

  header.hero h1 {
    font-size: 1.5em;
  }

  nav a {
    display: inline-block;
    margin: 5px 8px;
    font-size: 0.95em;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact input,
  .contact textarea,
  .contact button {
    width: 90%;
  }

  .whatsapp-btn {
    font-size: 1em;
    padding: 10px 18px;
  }

  .social-links {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  header.hero h1 {
    font-size: 1.2em;
  }

  .gallery-grid img {
    max-height: 300px;
    object-fit: cover;
  }
}
