
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Great Vibes', cursive;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
  font-size: 1.5rem;

}
header {
  background: #dc86a3;
  color: white;
  padding: 15px;
  text-align: center;
}
header h1 {
    font-size: 5rem;
  }
  
  header p {
    font-size: 3rem;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  
nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
}

.hero img {
   width: 100%;
  height: auto; /* Let it grow naturally */
  object-fit: contain; /* Show entire image */
  border-radius: 8px;
}

.hero {
  text-align: center;
  background: #fde4ec;
  padding: 20px;
  font-size: 1.5rem;
}

.summary, .contact, .services {
  padding: 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}
.services img {
    width: 100%;
    height: auto; /* Let it grow naturally */
    object-fit: contain; /* Show entire image */
    border-radius: 8px;
  }

  .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
}


form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 10px;
  background: #dc86a3;;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 10px;
  background:#dc86a3;;
  color: white;
  margin-top: 20px;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1rem;
  }

  nav a {
    font-size: 0.9rem;
    display: block;
    margin: 5px 0;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .services {
    padding: 10px;
  }

  .gallery img {
    max-width: 100%;
  }

  form {
    padding: 10px;
  }

  input, textarea, button {
    font-size: 1rem;
  }
}

