body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;

  /* Background with overlay for readability */
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("braids1.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}

/* ================= NAVBAR ================= */
nav {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: rgba(0,0,0,0.8);
  flex-wrap: wrap;
}
nav a {
  color: white;
  margin: 5px 10px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= HERO ================= */
.hero {
  padding: 60px 20px;
}
.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  line-height: 1.5;
}

/* ================= SERVICES GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* SERVICE CARD */
.service-card {
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: scale(1.05);
}
.service-card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover img {
  transform: scale(1.05);
}
.service-info {
  padding: 15px;
}
.book-btn {
  background: gold;
  padding: 10px;
  display: inline-block;
  text-decoration: none;
  color: black;
  margin-top: 10px;
  border-radius: 5px;
  font-weight: bold;
}

/* ================= OUR WORK GALLERY ================= */
.our-work {
  padding: 40px 20px;
}
.our-work h2 {
  margin-bottom: 20px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.work-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  display: flex;
  flex-direction: column; /* Stack fields vertically */
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.contact-form button {
  background-color: gold;
  color: black;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background-color: #e6c200;
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ================= FOOTER ================= */
footer {
  background: rgba(0,0,0,0.8);
  padding: 15px;
  margin-top: 30px;
}

/* ================= RESPONSIVE ================= */
@media screen and (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  nav a {
    margin: 5px 0;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .service-card img {
    max-height: 180px;
  }
  .book-btn {
    padding: 8px;
    font-size: 14px;
  }
  .whatsapp-btn {
    font-size: 24px;
    padding: 12px;
  }
  .work-card img {
    height: 120px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 14px;
    padding: 8px;
  }
}
/* ===== MOBILE TEXT ADJUSTMENTS ===== */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
}

@media screen and (max-width: 500px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 16px;
  }
  .book-btn {
    font-size: 16px;
    padding: 12px;
  }

  .our-work h2 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 12px;
  }
  .contact-form button {
    font-size: 16px;
    padding: 12px;
  }
}