
.banner {
  width: 100vw;
  overflow: hidden; /* اختياري لمنع التمدد الزائد */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  background: url('/iResources/img/banner1.jpg') no-repeat center center/cover;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #eee;
}

.buttons a {
  display: inline-block;
  padding: 12px 24px;
  margin: 0 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #d60000;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.buttons a:hover {
  background-color: #a80000;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  p { font-size: 1rem; }
  .buttons a {
    margin-top: 10px;
    display: block;
  }
}
