body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* HEADER */
header {
  background: #141615;
  padding: 10px 40px;
  display: flex;
  align-items: center;
}

header img {
  height: 90px;
  width: 140px;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

nav a:hover {
  color: gold;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 80px;
  background: url('salon-bg.jpg') no-repeat center center/cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero h1,
.hero h2,
.hero p,
.hero a {
  position: relative;
  z-index: 1;
  margin: 10px 0;
}

.hero h1 {
  font-family: "Lucida Handwriting", cursive;
  font-size: 60px;
  margin-top: -60px;
}

.hero h2 {
  font-size: 28px;
}

.hero p {
  font-size: 22px;
  line-height: 2;
}

.hero a {
  margin-top: 20px;
}

/* BUTTON */
.btn {
  background: gold;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* SECTION */
.section {
  padding: 50px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section p {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
}

/* CARDS */
.cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #222;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card:hover {
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* SOCIAL ICONS */
.social-icons a {
  margin: 0 10px;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a:hover .fa-instagram {
  color: #E4405F;
}

.social-icons a:hover .fa-facebook-f {
  color: #1877F2;
}

.services {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.services h2 {
  color: gold;
  margin-bottom: 30px;
  font-size: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 0 50px;
}

.service-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 400px;   /* FIX: was too big (500px) */
  object-fit: cover;
}

.service-card h3 {
  color: gold;
  margin: 10px 0;
}

.service-card p {
  color: #ddd;
  text-align: center;
  font-size: 14px;
  padding: 0 10px 10px;
}

.service-card .btn {
  margin-bottom: 15px;
}

.service-card:hover {
  transform: scale(1.10);
}

.container h2 {
  text-align: center;
  color: gold;
  font-size: 32px;
  margin: 30px 0;
}

.container h3 {
  text-align: center;
  color: gold;
  font-size: 25px;
  margin: 15px 0;
}

.service-card .btn {
  display: inline-block;
  margin: 10px auto 15px;
}

.about {
  padding: 60px 20px;
  background: #0f0f0f;
  color: #eaeaea;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #d4af37; /* gold */
  letter-spacing: 1px;
}

.about p {
  max-width: 900px;
  margin: 15px auto;
  font-size: 18px;
  line-height: 1.8;
  color: #ccc;
}

.about strong {
  color: #ffffff;
}

.contact {
  padding: 60px 20px;
  text-align: center;
  background: #0f0f0f;
}

.contact h2 {
  font-size: 36px;
  color: #d4af37;
}

.subtitle {
  color: #ccc;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-form, .contact-info {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  width: 350px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #d4af37;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.contact-info h3 {
  color: #d4af37;
}

.contact-info p {
  margin: 10px 0;
  color: #ccc;
}

.quick-buttons {
  margin: 20px 0;
}

.call-btn, .whatsapp-btn {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  background: #444;
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.social-icons a {
  color: #fff;
  margin: 10px;
  font-size: 20px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 10px 15px;
    flex-direction: column;
    align-items: center;   /* changed */
    text-align: center;    /* added */
  }

  header img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;   /* added */
  }

  nav {
    width: 100%;
    justify-content: center;  /* changed */
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }

  nav a {
    font-size: 14px;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 80px 20px 40px;
    align-items: center;     /* changed */
    text-align: center;      /* added */
    background-position: 70% center; /* face visible */
  }

  .hero h1 {
    font-size: 34px;
    margin-top: 0;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* BUTTON CENTER */
  .btn {
    display: block;
    margin: 15px auto;
    text-align: center;
  }

  /* SECTIONS */
  .section {
    padding: 30px 15px;
  }

  .section p {
    font-size: 15px;
  }

  /* SERVICES GRID */
  .services-grid {
    padding: 0 10px;
  }

  .service-card img {
    height: 500px;
  }

  /* ABOUT */
  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 15px;
    padding: 0 10px;
  }

  /* CONTACT */
  .contact-form,
  .contact-info {
    width: 100%;
  }

  /* FOOTER */
  .footer-text {
    font-size: 12px;
  }
}