/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #fff8f5;
  color: #4a3c31;
  line-height: 1.6;
  font-size: 16px;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-buttons a {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

.floating-buttons a.call-float {
  background-color: #34b7f1; /* Call blue */
}

.floating-buttons a:hover {
  background-color: #128c7e;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7e6e3; /* soft blush */
  padding: 15px 90px;
  margin-bottom: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: contain;
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #b76e79; /* rose gold */
  font-size: 1.8rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #4a3c31;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #b76e79; /* rose gold */
  border-bottom: 2px solid #b76e79;
}

/* Hero Section */
.hero {
  background: url('makeoverlogo.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff8f5;
  position: relative;
  padding: 50px 20px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(183,110,121, 0.6); /* rose gold overlay */
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.btn {
  background-color: #b76e79; /* rose gold */
  color: #fff8f5;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin: 20px auto 0 auto;
}

.btn:hover {
  background-color: #a05a64;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #b76e79;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Intro */
.intro p {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 1.1rem;
  color: #5a4d43;
}

.servicesbtn {
  display: flex;
}

/* About */
.about-content p {
  max-width: 700px;
  margin: 15px auto;
  font-size: 1.1rem;
  color: #5a4d43;
  line-height: 1.7;
  text-align: center;
}

/* Call to Action Section */
.cta {
  text-align: center;
  margin-top: 40px;
}

.cta h3 {
  font-size: 1.8rem;
  color: #4a3c31;
  margin-bottom: 15px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #f7e6e3;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 2px 6px rgba(183,110,121,0.3);
  text-align: center;
}

.service-card h3 {
  color: #b76e79;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.service-card p {
  color: #5a4d43;
  font-size: 1rem;
  line-height: 1.5;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 60%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.modal-content h2 {
  margin-top: 0;
}

.close {
  color: #aaa;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Contact */
.contact form {
  max-width: 600px;
  margin: 20px auto 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact p {
  text-align: center;
}

.contact input,
.contact textarea {
  padding: 12px 15px;
  border: 1px solid #d9c6c3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  resize: vertical;
}

.contact button {
  width: 150px;
  align-self: center;
  background-color: #b76e79;
  color: #fff8f5;
  padding: 12px 0;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #a05a64;
}

.social-links {
  text-align: center;
}

.social-links h3 {
  margin-bottom: 10px;
  color: #4a3c31;
}

.social-links .btn {
  background-color: #b76e79;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #fff8f5;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.social-links .btn:hover {
  background-color: #a05a64;
}

/* Footer */
footer {
  background-color: #f7e6e3;
  text-align: center;
  padding: 20px 10px;
  color: #4a3c31;
  font-size: 0.9rem;
  border-top: 1px solid #d9c6c3;
  margin-top: 40px;
}

/* Responsive */

/* For small devices / phones */
@media (max-width: 600px) {
  .navbar {
    padding: 10px 20px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .nav-links li a {
    padding: 8px;
  }
  .hero {
    height: 50vh;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  section {
    padding: 40px 15px;
  }
  h2 {
    font-size: 2rem;
  }
  .intro p, .about-content p {
    font-size: 1rem;
  }
  .service-card {
    padding: 20px;
  }
  .contact form {
    width: 100%;
    padding: 0 10px;
  }
  .modal-content {
    width: 90%;
    margin: 5% auto;
    padding: 20px;
  }
}

/* For tablets / medium devices */
@media (min-width: 601px) and (max-width: 992px) {
  .navbar {
    padding: 15px 40px;
  }
  .hero {
    height: 60vh;
  }
  .hero-text h2 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1.15rem;
  }
  .btn {
    padding: 11px 24px;
  }
  section {
    padding: 50px 20px;
  }
  h2 {
    font-size: 2.3rem;
  }
  .intro p, .about-content p {
    font-size: 1.05rem;
  }
  .service-card {
    padding: 22px;
  }
  .modal-content {
    width: 80%;
  }
}

/* For desktops / large screens */
@media (min-width: 993px) {
  .navbar {
    padding: 15px 90px;
  }
  /* you can leave most original styles unchanged */
}
