body {
  margin: 0;
  font-family: "Heebo", Arial, sans-serif;
  background-color: #faf7f2;
  color: #333;
  text-align: right;
  direction: rtl;
}

/* Hero Section */
.hero {
  background-image: url("Images/01glass_door.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
}

.overlay h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.2em;
}

/* Info */
.info {
  padding: 40px;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

/* Gallery */
.gallery {
  background: #fff;
  padding: 40px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Contact */
.contact {
  text-align: center;
  padding: 50px 20px;
  background-color: #f4f2ed;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  transition: background 0.3s;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5a;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
  .overlay {
    padding: 20px;
    width: 80%;
  }
  .overlay h1 {
    font-size: 2em;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
