/* Base styles */
body {
  background-color: #6a2e6b;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.7;
}

.heading {
  text-align: center;
  background-color: #6a2e6b;
  padding: 3rem 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 4rem;
  color: #d4c76f;
  margin: 0;
}

h2 {
  font-family: 'Hepta Slab', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #6a2e6b;
}

.navbar-links {
  display: flex;
  justify-content: center;
  gap: 2rem; /* Keep your spacing */
  padding: 0.75rem 2rem; /* Keep pill shape */
  margin: 0 auto;
  width: fit-content;
  /* Add this to fix alignment: */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-links a {
  text-decoration: none;
  color: #d4c76f;
  font-weight: bold;
  font-family: 'Courier New', Courier, monospace;
  position: relative;
}

.navbar-links a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #fff;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.navbar-links a:hover::after {
  width: 100%;
}

.price-button {
  max-width: 64rem;
  margin: 0 auto 10px auto;
}

.back-button {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #d4c76f;
  color: #501f52;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.back-button:hover {
  background-color: #501f52;
  color: #fff;
  border-color: #d4c76f;
}

/* Contact Form Container styled like the treatment containers */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 64rem;
  width: 100%;
  margin: 2rem auto;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 16px;
  background-color: #d4c76f;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



label {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color: #6a2e6b;
}

input[type="text"],
input[type="name"],
input[type="email"],
textarea {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  margin-top: 0.5rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button[type="submit"] {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  background-color: #6a2e6b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #501f52;
}

html {
  overflow-y: scroll;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  form {
    flex-direction: column;
    text-align: center;
    margin: 1rem;
    padding: 1.5rem;
  }

  button[type="submit"] {
    align-self: center;
  }
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center; /* Or left/right as you want */
  align-items: center;
  margin-top: 1rem; /* Optional spacing */
}

.social-icons a {
  color: #d4c76f;  /* Matches your gold accent */
  font-size: 28px; /* Size of the icons */
  transition: transform 0.3s ease, color 0.3s ease;
  margin-right: 10px;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #fff; /* Or any hover color you want */
}

.navbar-links {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  background-color: #6a2e6b;  /* Or whatever color you want */
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 2rem;      /* More padding for the bubble look */
  border-radius: 2rem;         /* Makes it pill-shaped */
  margin: 0 auto;           /* Centered with some margin */
  width: fit-content;          /* So it wraps tight around the links */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Subtle shadow for lift */
}


.heading {
  /* Remove position sticky/fixed if you added it earlier */
  position: static;
}

.location {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 2rem auto;
  max-width: 64rem;
  text-align: center;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-item h2 {
  font-family: 'Hepta Slab', serif;
  font-size: 1.5rem;
  color: #d4c76f;
  margin: 0 0 0.5rem 0;
}

.location-item p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: white;
  margin: 0;
}

/* If you want exact same width/positioning as the nav */
.address-container {
  display: flex;
  justify-content: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 2rem; /* Match navbar-links padding */
}

.address {
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  color: #d4c76f;
  /* Match the navbar's visual width: */
  max-width: 400px; /* Adjust this number as needed */
  margin: 0.5rem auto 0;
  /* Add slight left pull if still misaligned: */
  position: relative;
  left: -8px; /* Adjust this value pixel-by-pixel if needed */
}


@media (max-width: 768px) {
  .container01,
  .container02,
  .container03,
  .container001 {
    flex-direction: column;   /* Stack items vertically */
    text-align: center;       /* Center content */
    padding: 1.5rem;          /* Reduce padding for smaller screens */
  }

  .left-text, .right-text, .left-image, .right-image {
    padding: 0;               /* Remove horizontal padding */
    margin: 0.5rem 0;         /* Add spacing between stacked elements */
  }

  .right-image img,
  .left-image img {
    width: 100%;              /* Image fills container */
    height: auto;             /* Maintain aspect ratio */
  }

  h1 {
    font-size: 2.5rem;  /* Smaller for mobile */
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;    /* Slightly smaller paragraphs */
  }

  .welcome-box {
    padding: 1rem;       /* Less padding on mobile */
  }

   .navbar-links {
    
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .back-button {
    width: auto;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}




