body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fdfcf9;
  color: #333;
}

header {
  background: linear-gradient(135deg, #000, #bfa14a);
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
}

header h1 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 2rem;
}

nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section {
  padding: 3rem 2rem;
}

.section h2 {
  text-align: center;
  color: #bfa14a;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px; /* ثابت لجميع الصور */
  object-fit: cover;
  cursor: pointer;
}

.card p {
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

footer .social a {
  color: #bfa14a;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid #fff;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}