.Arachnids{
  font-family: 'Comic Sans MS', cursive, sans-serif; 
  background-color: #ecd6af;
  color: #333;
  line-height: 1.6;
  text-align: center; 
  padding: 0;
  margin: 0;
}

header {
  background: linear-gradient(135deg, #b8890a, #f6af4c);
  color: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0;

}

.logo {
  font-size: 50px ;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.logo span {
  color: #ee350f;
  font-size: larger;
}

.tagline {
  font-style: italic;
  font-size: 30px;
}

nav {
  background-color: rgb(62, 93, 114);
  padding: 8px 0px;
  width: 30%;
  margin-left: 35%;
  border-radius: 50px;
  border: solid rgb(15, 15, 15) 1px;
 
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

nav ul li a:hover {
  background-color: #ffd700;
  color: green ;
}

.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center; 
}

.hero {
  background-image: url('./backgrunds/logo-ar.jpeg'); /* Use a relative path */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-radius: 20px;
}

.hero-content {
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-shadow: #f0f8ff;
}

.btn {
  display: inline-block;
  background-color: #ef2734;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
   cursor: pointer;
}

.btn:hover {
  background-color: #d64753;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* اليك بعد التعديل */
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d64753;
  margin: 0.5rem auto;
}

.arachnids-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 10px;
  align-items: center;
  justify-items: center; 
}

.arachnids-card {
  background-color: white;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center; 
}

.arachnids-image {
  height: 200px;
  overflow: hidden;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.arachnids-image img {
  width: 20%; 
  height: auto;
  margin-top: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.arachnids-card:hover .arachnids-image img {
  transform: scale(1.1);
}

.arachnids-info {
  padding: 1.5rem
}

.arachnids-info h3 {
  color :#d64753;
  margin-bottom: 0.5rem;
}
footer {
  background-color: #d64753;
  color: rgb(3, 3, 3);
  text-align: center;
    padding: 10px;
    background-color: #ef2734;
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 20px;
    width: 100%;
}