/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --pink: #ff4fa3;
  --pink-hover: #ff2e8c;
}

/* Body + background */
body {
  font-family: Arial, sans-serif;
  background: url("1.png") no-repeat center center/cover;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Overlay (التعتيم على الخلفية) */
.overlay {
  background: rgba(0,0,0,0.55);
  padding: 100px 20px 60px;
  text-align: center;
}

/* محتوى النص */
.content {
  max-width: 900px;
  margin: 0 auto;
}

.content h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 25px; /* مسافة تحت العنوان */
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.content p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 35px auto; /* مسافة تحت النص */
  line-height: 1.6;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--pink);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  margin-bottom: 50px; /* مسافة بين الزر والصور */
}

.btn:hover {
  background: var(--pink-hover);
  transform: scale(1.08);
}

/* معرض الصور */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px 60px;
  background: rgba(0,0,0,0.65);
}

.gallery img {
  width: 280px;          /* الصور أكبر */
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.08);
}