
/*======================
main
======================*/
/* Hero Section */
.hero {
  min-height:100vh; /* يغطي الشاشة بدون أن يقطع Navbar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: 60px;
  text-shadow: 2px 2px 10px black;
}

.hero h1 span {
  color: #ffd700;
}

.subtitle {
  font-size: 30px;
  margin-top: 20px;
  text-shadow: 1px 1px 5px black;
}

/* Team Section */
.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 كروت في السطر */
  gap: 30px;
  padding: 50px 60px;
}

.team-member {
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  text-align: center;
  padding: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.team-member img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

/* Hover Effects */
.team-member:hover img {
  transform: scale(1.15) rotate(3deg);
  filter: brightness(1.3) contrast(1.3);
  box-shadow: 0 0 20px 5px rgba(255,215,0,0.7);
}

.team-member:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
  background: rgba(255,255,255,0.15);
}

.team-member h3 {
  font-size: 16px;
  color: #ffd700;
  margin-top: 10px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.team-member:hover h3 {
  color: #fff;
  text-shadow: 0 0 10px #ffd700;
}
/* =====================================================
   FOOTER
===================================================== */

footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 3rem;
}

/* Footer titles */
footer h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer links */
.footer-link {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Footer container spacing */
footer .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Footer right columns */
footer .col-md-4.text-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Social icons */
.social-icons-wrapper {
    margin-top: 0.5rem;
}

.social-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffd700;
    transform: scale(1.2);
}

/* Footer logo */
.footer-logo {
    max-width: 150px;
}

