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

body{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
  color: #374151;
  line-height: 1.6;
}

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

.header{
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}


.moor-stitches{
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
}

.nav{
  display: flex;
  gap: 1.5rem;
}

.nav-link{
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
}

.nav-link:hover{
  color: #4f46e5;
}

.hero{
  background-color: #4f46e5;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.hero-title{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-subtitle{
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.book-now{
  background-color: white;
  color: #4f46e5;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
}


.book-now:hover{
  background-color: #4f46e5;
  color: white;
}

.services{
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title{
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1f2937;
}

.service-grid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card{
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgb(0 0 0/0.05);
  transition: box-shadow 0.3s ease;
}

.service-card:hover{
  box-shadow: 0 8px 20px rgb(0 0 0/0.1);
}

.service-title{
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #4f46e5;
}

.gallery{
  background-color: #f3f4f6;
  padding: 4rem 1rem;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-grid img{
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgb(0 0 0/0.1);
  object-fit: cover;
  height: 180px;
}

.image-animate{
  transition: transform 0.3s ease-in-out;
}

.image-animate:hover{
  transform: scale(1.05);
}

.contact{
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.contact-form{
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgb(0 0 0/0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label{
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #374151;
}

.contact-form input,.contact-form textarea{
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    resize: vertical;
  }

  .contact-form input:focus,.contact-form textarea:focus{
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px #c7d2fe;
  }

  .whatsapp{
    text-align: center;
    font-size: medium;
    font-weight: 700;
  }
  .footer{
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
