@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Cinzel:wght@400;700&display=swap');

:root {
  --pharaoh-gold: #D4AF37;
  --nile-blue: #1B3B6F;
  --ancient-bronze: #CD7F32;
  --egyptian-black: #1C1C1C;
  --stone-cream: #F5F5DC;
  --crimson-red: #DC143C;
}

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

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--stone-cream);
  color: var(--egyptian-black);
  direction: rtl;
  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
}

header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.6);
  z-index: -1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: rgba(28, 28, 28, 0.3);
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 1000;
  transition: background-color 0.3s;
}

.logo {
  font-family: Cinzel, serif;
  font-size: 2rem;
  color: var(--pharaoh-gold);
  text-decoration: none;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 2rem;
}

.nav-links a {
  color: var(--stone-cream);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-bottom-color 0.3s;
}

.nav-links a:hover {
  color: var(--pharaoh-gold);
  border-bottom-color: var(--pharaoh-gold);
}

.banner {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 2rem;
}

.banner-content {
  max-width: 800px;
}

.banner-content h1 {
  font-family: Cinzel, serif;
  font-size: 4.5rem;
  color: var(--pharaoh-gold);
  margin-bottom: 1rem;
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 8px;
}

.banner-content p {
  font-size: 1.3rem;
  color: var(--stone-cream);
  margin-bottom: 2.5rem;
  text-shadow: rgba(0, 0, 0, 0.7) 1px 1px 4px;
}

.cta-button {
  display: inline-block;
  background-color: var(--pharaoh-gold);
  color: var(--egyptian-black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  border: 3px solid var(--ancient-bronze);
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 15px;
}

.cta-button:hover {
  background-color: var(--ancient-bronze);
  color: white;
  transform: translateY(-3px);
  box-shadow: rgba(212, 175, 55, 0.5) 0px 8px 25px;
}

#intro-section {
  background-color: var(--stone-cream);
  text-align: center;
}

.section-title {
  font-family: Cinzel, serif;
  font-size: 2.8rem;
  color: var(--nile-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: var(--pharaoh-gold);
  margin: 0.5rem auto 0px;
}

.intro-text {
  font-size: 1.2rem;
  color: var(--egyptian-black);
  max-width: 800px;
  margin: 0px auto 4rem;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature-item {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  flex-basis: 30%;
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--nile-blue);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--pharaoh-gold);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--nile-blue);
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

footer {
  background-color: var(--egyptian-black);
  color: var(--stone-cream);
  text-align: center;
  padding: 2rem 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

footer .logo {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}