
@font-face {
  font-family: "MeaCulpa";
  src: url("../fonts/MeaCulpa-Regular.woff2") format("woff2"),
       url("../fonts/MeaCulpa-Regular.woff") format("woff");
}


#home{
    min-height: 80vh;             /*   يجعل ارتفاع السيكشن يساوي طول الشاشة */
   display: flex;                /* لتسهيل ترتيب النصوص */
   flex-direction: column;
   justify-content: center;      /* يوضع النص في منتصف السيكشن عموديًا */
   align-items: center;          /* يوضع النص في منتصف السيكشن أفقيًا */
   text-align: center;           /* محاذاة النص للوسط */
   color: rgb(19, 100, 95);                  /* لون النص */
   padding: 0 20px;  
   position: relative;
   overflow: hidden;
}

.hero-img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
   object-fit: cover;
}

#home h1{
font-family: "MeaCulpa", sans-serif;
   color: #ce8d1d;
   font-size: 50px;
   font-weight: bold;
}

#home span{
  display:block;
    font-size: 30px;
    font-weight:bold;
    color: rgb(19, 100, 95); 
}

#home p{
   font-size: 25px;
    font-weight: normal;
    color: rgb(19, 100, 95);
}

.cta-btn {
   display: inline-block;
   margin-top: 10px;
  padding: 12px 25px;
  background-color: #FFB84D; /* لون جذاب يتماشى مع البراند */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.3s;
  
}

.cta-btn:hover {
  background-color: #FFA500; /* تغيير اللون عند المرور */
  transform: scale(1.05);     /* تكبير خفيف للزر عند Hover */
}

.about-section {
  padding: 80px 20px;
  background-color: #FFF5E5; /* لون فاتح دافئ يتماشى مع البراند */
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container .cta-btn{
  display:inline-block;
   gap:20px;
}

.about-text {
  flex: 1 1 400px;
 
}

.about-text h2 {
  font-family: "MeaCulpa", sans-serif;
  font-size: 2rem;
  color: rgb(19, 100, 95); /* بني داكن للعنوان */
  margin-bottom: 20px;
}

.about-text p {
  font-weight: bold;
  font-size: 20px;
  color: rgb(19, 100, 95);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-image img{
 margin: 20px auto;
 border-radius: 6px;
 align-items: center;
 width:90%;
 height: 40vh;
}
 


.home-article{
  max-width: 70%;
  background-color: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 4px 4px 6px rgba(0,0,0,0.15);
}

.home-article h2{
  color: rgb(19, 100, 95);
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  font-weight: bold;
}

.home-article p{
 color:#817f7f;
 line-height: 1.6;
}

.home-article a{
  margin: 15px;
}
