*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Slabo 27px", serif;
    font-weight: 400;
    font-style: normal;
    list-style: none;
    text-decoration: none;
}
header{
    
    position: fixed;
    right: 0;top: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: transparent;
}
.logo{
    font-size: 30px;
    font-weight: 700;
    color: white;
}
.navbar a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;

}
.navbar a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 30px;
    z-index: 1000;
    cursor: pointer;
    display: none;
}
.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background:linear-gradient(245.59deg,#6d81d3 30%,#0e2069 28.53%,#081c6c 70%);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2rem;
}

.hero-text p{
    color: aliceblue;
    font-size: 90%;
    line-height: 1.9;
    margin-bottom: 40px;
    margin-left: 80px;
}
.hero-img img{
    width: 300px;
    height: auto;
    position: relative; /* أساسي لتحديد موقع الأيقونات */
    display: inline-block; /* أو block حسب التصميم */

   
}
.hero-text a{
    display: inline-block;
    color: aliceblue;
    background: #6d81d3;
    border: 1px solid transparent;
    padding: 12px 20px ;
    margin-left:70px;
    
    
    line-height: 1.4;
    font-size: 14px ;
    font-weight: 400;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
  
}
.hero-text a + a {
    margin-left: 0.2rem; /* أو 0 لو بدك يكونوا لازقين تمامًا */
  }
.hero-text a:hover{
    background: transparent;
    border: 1px solid white;
    transform: translateX(8px);
}
.icons{
    position: absolute;
    top: 50%;
    padding: 0 3%;
    transform: translateY(-50%);
}
.icons i{
    display: block;
    margin: 29px 0;
    font-size: 24px;
    color: aliceblue;
    transition: all .50s ease;
}
.icons i:hover{
    color: #6d81d3;
    transform: translateY(-5px);
}

h2 {
    font-size: 36px;
    text-align: center;
    color: #1e1e1e;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
  }
  
  p {
    font-size: 18px;
    text-align: center;
    color: #0b0a0a;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
/* تصميم القسم الخاص بالمغامرات */
.adventures {
    background:  #6d81d3;
    padding: 60px 20px;
    
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .adventure-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .adventure-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .adventure-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .adventure-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
  
  .adventure-item h3 {
    font-size: 24px;
    margin-top: 15px;
    color: #0e0c0c;
    text-transform: uppercase;
  }
  
  .adventure-item p {
    font-size: 16px;
    color: #0a0808;
    margin-top: 10px;
  }
  
  .adventure-item a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    background-color: #1e1e1e;
    color: #e1e4e9;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .adventure-item a:hover {
    background-color: #050506;
    transform: scale(1.05);
    cursor: pointer;
  }
  
  /* تنسيق الزر CTA */
  .cta {
    text-align: center;
    margin-top: 60px;
  }
  
  .cta a {
    font-size: 22px;
    text-decoration: none;
    background-color: #1e1e1e;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta a:hover {
    background-color: #4343b8;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.25);
    cursor: pointer;
  }

  /* My horses */
  .horses {
    background:#6d81d3;
    padding: 60px 20px;
    text-align: center;
  }
  
  .horses h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0f0c0a;
  }
  
  .horses p {
    font-size: 18px;
    color: #0c0b0b;
    margin-bottom: 40px;
  }
  
  .horse-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .horse-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .horse-card:hover {
    transform: translateY(-10px);
    cursor: pointer;
  }
  
  .horse-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .horse-card h3 {
    font-size: 22px;
    color: #121110;
    margin-top: 15px;
  }
  
  .horse-card p {
    color: #0b0908;
    font-size: 16px;
    margin-top: 10px;
  }

  /* gallery*/

  .gallery {
    padding: 60px 20px;
    background-color: #6d81d3;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0a0908;
  }
  
  .gallery p {
    font-size: 18px;
    color: #040404;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
  }
  
/* journal */
  .journal {
    padding: 60px 20px;
    background-color:#6d81d3;
    color: #070706;
    text-align: center;
  }
  
  .journal h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .journal p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #151414;
  }
  
  .journal-entries {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: auto;
    text-align: left;
  }
  
  .entry {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
  }
  
  .entry:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  
  .entry h3 {
    font-size: 24px;
    color: #0e0e0e;
    margin-bottom: 5px;
  }
  
  .entry .date {
    font-size: 14px;
    color: #0c0c0c;
    display: block;
    margin-bottom: 10px;
  }
  
  .entry p {
    font-size: 16px;
    color: #050505;
  }
  
  .entry a {
    color: #0d0d0d;
    font-weight: bold;
    text-decoration: none;
  }
  .entry a:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  

  /* My horses */

  .contact {
  padding: 60px 20px;
  background-color: #6d81d3;
  color: #0c0c0b;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #0c0c0b;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: inherit;
}

.contact-form button {
  padding: 12px;
  background-color: #0c0c0b;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color:#0c0c0b;
  cursor: pointer;
}

.contact-info {
  margin-top: 40px;
  font-size: 16px;
  color: #0c0c0b;
}

.contact-info i {
  margin-right: 8px;
}

   

.social-icons a {
   
    margin: 29px 0;
    font-size: 24px;
    color: aliceblue;
    transition: all .50s ease;
}

.social-icons a:hover {
    color: #0b1d67;
    transform: translateY(-5px);
    cursor: pointer;
}

  



@media (max-width:1174px) {
    .navbar a{
        margin-left: 20px;
    }
    
}
@media (max-width:832px) {
    #menu-icon{
        display: block;
      }
    
      .navbar {
        flex-direction: column;
        align-items: flex-start; /* يخلي الروابط تبدا من الطرف */
        background-color:#6d81d3;
        position: absolute;
        top: 60px;
        right: 20px; /* تبقى بجانب الشاشة مش تغطيها كلها */
        width: 150px; /* عرض صغير */
        padding: 20px;
        border-radius: 8px;
        
        display: none;
        margin-top: 50px;
      }
      .navbar a{
        display: block;
        margin: 10px 0;
        margin-left: 0;
      }
    
      .navbar.active {
        display: flex;
      }
}
@media (max-width:706px){
    #ctaa{
        margin-top: 10px;
        margin: 10px 70px;
        padding: 12px 30px ;
    
       
    }
    
}
@media (max-width:692px){
    section{
        padding: 0 3%;
        transition: .2s;
    }
    .hero-text{
        text-align: center;
    }
    .hero-img{
        text-align: center;
    }
    .hero-img img{  
        width: 300px;
        height: auto;
    }
    .hero{
        height: 100%;
        gap: 1rem;
        grid-template-columns: 1fr;

}


}
@media (max-width:692px){
    .hero-text p{
        align-items: center;
        justify-content: center;
        margin: 0% 30%;
      
        font-size: 90%;
        line-height: 2;
        
        margin-top: 100px;
    }
}
@media (max-width:444px){

.hero-text a{
    display: block;
    padding: 12px 2px ;
    
    
}}