/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Cairo', sans-serif;
  font-size: 22px; 
  background: #f8f6f2;
  color: #333;
  line-height: 1.8;
}

/* Headings */
h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

/* Container */
.container {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}

/* Sections spacing */
section {
  padding: 80px 0;
}

/* Titles */
h2 {
  text-align: center;
  color: #b88a4a;
  margin-bottom: 15px;
}

.desc {
  text-align: center;
  color: #777;
  margin-bottom: 50px;
}

/* ================= HERO ================= */
.hero-header {
  position: relative;
  height: 450px;
  background: url("images/background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-header .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
}

.hero-content .logo {
  width: 120px;
  margin-bottom: 10px;
  opacity: 0.5;
  border-radius:50% ;
}

.hero-content h1 {
  font-size: 45px;
  letter-spacing: 3px;
}

.hero-content p {
  margin: 10px 0 20px;
  opacity: 0.9;
}

/* ================= BUTTON ================= */
.btn {
  background: linear-gradient(135deg, #c79a5d, #b88a4a);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(184,138,74,0.3);
}

a.btn {
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
}

/* ================= LAYOUT ================= */
.content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.content.reverse {
  flex-direction: row-reverse;
}

/* ================= IMAGES ================= */
.image img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.5s;

  border-top: 4px solid #b88a4a;
  border-bottom: 4px solid #b88a4a;
}

.image img:hover {
  transform: scale(1.05);
  border-top-color: #c79a5d;
  border-bottom-color: #c79a5d;
}

/* ================= TEXT ================= */
.text h3 {
  color: #b88a4a;
  margin-bottom: 15px;
}

.text ul {
  list-style: none;
}

.text ul li {
  margin-bottom: 10px;
  padding-right: 20px;
  position: relative;
}

.text ul li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: #b88a4a;
}

/* ================= FEATURES ================= */
.features {
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 15px;
  margin: 40px auto;
  max-width: 800px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card h4 {
  color: #b88a4a;
  margin-bottom: 10px;
}

.bottom-text {
  color: #666;
  margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.footer {
  position: relative;
  background: url("images/background.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.footer-overlay {
  background: rgba(0,0,0,0.6);
  padding: 100px 20px 40px;
}

.footer-overlay h2 {
  font-size: 40px;
  letter-spacing: 4px;
}

.footer-overlay .sub {
  font-size: 22px;
  letter-spacing: 3px;
  margin: 10px 0 20px;
  opacity: 0.8;
}

.footer-overlay .desc {
  max-width: 600px;
  margin: auto;
  line-height: 1.8;
  font-size: 20px;
  opacity: 0.9;
}

/* Social */
.social {
  margin-top: 25px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 8px;
  border-radius: 50%;
  background: #b88a4a;
  color: white;
  font-size: 23px;
  transition: 0.3s;
  text-decoration: none;
}

.social a:hover {
  transform: translateY(-5px) scale(1.1);
}

.social a:nth-child(1):hover {
  background: #25D366;
}

.social a:nth-child(2):hover {
  background: #E1306C;
}

.social a:nth-child(3):hover {
  background: #000;
}

/* Copyright */
.copyright {
  background: black;
  padding: 10px;
  font-size: 13px;
}

/* ================= ANIMATION FIXED ================= */
/* ❌ مفيش إخفاء للصفحة */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* الحركة فقط */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .content.reverse {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}