/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Syne", sans-serif;
  overflow-x: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

ul {
  list-style: none;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
/* Header and Navigation */
.st-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 40px;
  position: absolute;
  background: #ffffff;
  border-radius: 0 0 100px 100px;
  width: 100%;
  z-index: 99;
}

.st-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24%;
  width: 100%;
}

.st-nav-left,
.st-nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
}

.st-nav-link {
  text-decoration: none;
  color: #453e21;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.st-nav-link:hover {
  color: #e8b75b;
}

.st-nav-link.st-home {
  color: #e8b75b;
}

.st-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0%;
}
.st-logo img {
  width: 222px;
}

.st-book-now {
  border: 1px solid #453e21;
  font-family: "Abhaya Libre", serif;
  border-radius: 50px;
  padding: 12px 30px;
  text-decoration: none;
  color: #222;
  font-size: 19px;
  transition: all 0.3s;
}

.st-book-now:hover {
  background-color: #222;
  color: #fff;
}

/* Hero Section */
.st-hero {
  display: flex;
  padding: 40px 80px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #f6f5f1 13.53%, #e7b75c 100%);
  height: 100vh;
  position: relative;
}

.st-hero-content {
  max-width: 817px;
  color: #1e1e1e;
  padding-top: 70px;
}

.st-hero-title {
  font-family: "Abhaya Libre", serif;
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 700;
}

.st-hero-subtitle {
  font-family: "Dancing Script", cursive;
  font-weight: 500;
  font-size: 50px;
  margin-bottom: 10px;
}

.st-hero-location {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 40px;
}

.st-consultation-btn {
  font-family: "Abhaya Libre", serif;
  border: 1px solid #1e1e1e;
  border-radius: 50px;
  text-decoration: none;
  color: #1e1e1e;
  font-size: 20px;
  transition: all 0.3s;
  font-weight: 700;
  width: 285px;
  height: 71px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-consultation-btn:hover {
  background-color: #222;
  color: #fff;
}

.st-hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
}

/* Mobile Menu */
.st-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

.st-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(248, 245, 235, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.st-mobile-menu.st-active {
  transform: translateY(0);
}

.st-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.st-mobile-nav-link {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 10px 0;
}

.st-mobile-nav-link:hover {
  color: #c9a74d;
}

.st-mobile-nav-link.st-home {
  color: #c9a74d;
}

.st-mobile-book-now {
  margin-top: 30px;
  border: 1px solid #222;
  border-radius: 50px;
  padding: 12px 30px;
  text-decoration: none;
  color: #222;
  font-size: 16px;
  transition: all 0.3s;
}

.st-mobile-book-now:hover {
  background-color: #222;
  color: #fff;
}

.st-close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .st-hero-title {
    font-size: 54px;
  }
  .st-hero-subtitle {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .st-nav-left,
  .st-nav-right {
    gap: 20px;
  }
  .st-hero {
    padding: 40px;
    height: auto;
  }
  .st-hero-title {
    font-size: 48px;
  }
  .st-hero-subtitle {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .st-header {
    padding: 0 20px;
    position: static;
    border-radius: 0 0 30px 30px;
  }
  .st-nav-left,
  .st-nav-right {
    display: none;
  }
  .st-mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 9;
  }
  .st-logo {
    position: static;
    transform: none;
    margin: 0;
    margin-top: 10px;
  }
  .st-logo img {
    width: 100px;
  }
  .st-nav {
    justify-content: space-between;
  }
  .st-hero {
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
  }
  .st-hero-content {
    margin-bottom: 40px;
  }
  .st-hero-title {
    font-size: 36px;
  }
  .st-hero-subtitle {
    font-size: 24px;
  }
  .st-hero-image {
    max-width: 100%;
    width: 100%;
    display: block;
    position: static;
  }
}
@media (max-width: 480px) {
  .st-hero-title {
    font-size: 32px;
  }
  .st-hero-subtitle {
    font-size: 22px;
  }
  .st-hero-location {
    font-size: 16px;
  }
  .st-consultation-btn {
    padding: 12px 30px;
    width: 100%;
    height: 50px;
  }
}
main {
  background: #f6f5f1;
  border-radius: 0 0 100px 100px;
}

.sub-heading {
  color: #e8b75b;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 5px;
  padding-bottom: 20px;
}

.sec-heading {
  font-family: "Abhaya Libre", serif;
  color: #453e21;
  font-size: 48px;
  font-weight: 400;
  padding-bottom: 20px;
}

.sec-para {
  color: #b3965e;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.site-link a {
  border: 1px solid #453e21;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: 19px;
  border-radius: 40px;
  text-decoration: none;
  color: #1e1e1e;
  display: inline-block;
  font-size: 20px;
  transition: all 0.3s;
  font-weight: 700;
  padding: 15px 20px;
  cursor: pointer;
}
.site-link a:hover {
  background: #b3965e;
}
.site-link button {
  border: 1px solid #453e21;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: 19px;
  border-radius: 40px;
  text-decoration: none;
  color: #1e1e1e;
  display: inline-block;
  font-size: 20px;
  transition: all 0.3s;
  font-weight: 700;
  padding: 15px 20px;
  background: transparent;
  cursor: pointer;
}
.site-link button:hover {
  background: #b3965e;
}

/*about us**/
.about-sec {
  padding-top: 64px;
}
.about-sec .site-link {
  padding-top: 50px;
}
.about-sec .about-boxes {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.about-sec .about-boxes .about-box-left {
  padding-top: 50px;
}
@media (max-width: 980px) {
  .about-sec .about-boxes {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  .about-sec .about-boxes .about-box-left {
    padding-top: 0px;
    text-align: center;
  }
  .about-sec .about-boxes .about-box-right img {
    width: 100%;
  }
}

/*service css**/
.services-sec {
  padding-top: 70px;
}
.services-sec .sub-heading {
  text-align: center;
}
.services-sec .service-para {
  text-align: center;
  color: #b3965e;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 3px;
}
.services-sec .services-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 65px;
}
@media (max-width: 767px) {
  .services-sec .services-boxes {
    flex-wrap: wrap;
  }
}
.services-sec .service-box {
  border: 1px solid #be8822;
  border-radius: 38px;
  padding: 24px;
  width: 32%;
}
@media (max-width: 767px) {
  .services-sec .service-box {
    width: 100%;
  }
}
.services-sec .service-box img {
  width: 100%;
}
.services-sec .service-box h3 {
  font-family: "Abhaya Libre", serif;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 20px;
  color: #453e21;
  margin-top: 15px;
}
.services-sec .service-box .sec-para {
  padding: 10px 0 20px;
}
@media (min-width: 1400px) {
  .services-sec .container {
    max-width: 1250px;
  }
}
@media (max-width: 767px) {
  .services-sec {
    padding-top: 50px;
  }
}

/*product css***/
.product-sec {
  padding-top: 130px;
}
.product-sec .sub-heading {
  text-align: center;
}
.product-sec .product-boxes {
  display: flex;
  justify-content: space-between;
  gap: 105px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .product-sec .product-boxes {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0px;
  }
  .product-sec .product-boxes .product-img img {
    width: 100%;
  }
}
.product-sec .product-content {
  padding-top: 50px;
}
.product-sec .product-content h3 {
  font-family: "Abhaya Libre", serif;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 24px;
  color: #453e21;
  padding-bottom: 20px;
}
.product-sec .product-content p {
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #b3965e;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .product-sec .product-content {
    padding-top: 0;
    margin-top: -50px;
  }
}
@media (min-width: 1400px) {
  .product-sec .container {
    max-width: 1250px;
  }
}

/*faq**/
.faq-sec {
  padding-top: 100px;
}
.faq-sec .faq-boxes {
  display: flex;
  gap: 88px;
}
.faq-sec .faq-content {
  padding-right: 100px;
}
.faq-sec .faq-content-box {
  padding-left: 10px;
  padding-top: 40px;
}
.faq-sec .faq-content-box h2 {
  font-size: 28px;
  color: #be8822;
  font-family: "Abhaya Libre", serif;
  font-weight: 400;
  line-height: 27px;
  font-style: italic;
  background: #ffffff;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .faq-sec .faq-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
  }
  .faq-sec .sub-heading {
    text-align: center;
  }
  .faq-sec .faq-content {
    padding-right: 0;
  }
  .faq-sec .faq-img img {
    width: 100%;
  }
}

/***faq****/
.contact-us {
  padding-top: 100px;
  padding-bottom: 100px;
  /* Responsive design */
}
.contact-us .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 50px;
  padding-left: 10px;
}
.contact-us .form-group {
  margin-bottom: 40px;
  text-align: left;
}
.contact-us .form-group label {
  font-size: 28px;
  color: #be8822;
  font-family: "Abhaya Libre", serif;
  font-weight: 400;
  line-height: 66px;
  font-style: italic;
  background: #ffffff;
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 5px;
  text-align: left;
}
.contact-us .form-group input,
.contact-us .form-group textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #b3965e;
  padding: 10px 0;
  font-size: 16px;
  color: #b3965e;
  outline: none;
}
.contact-us .form-group input::-moz-placeholder,
.contact-us .form-group textarea::-moz-placeholder {
  color: #b3965e;
}
.contact-us .form-group input::placeholder,
.contact-us .form-group textarea::placeholder {
  color: #b3965e;
}
.contact-us .form-group input:focus,
.contact-us .form-group textarea:focus {
  border-bottom: 1px solid #b3965e;
}
.contact-us .form-group textarea {
  resize: vertical;
  min-height: 40px;
}
@media (max-width: 768px) {
  .contact-us {
    text-align: center;
  }
  .contact-us .contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/**footer***/
/* Placeholder for demo purposes */
.content-placeholder {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px;
}

/* Footer styles */
.footer {
  padding: 40px 0 20px;
  background-color: #fff;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Logo styles */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 30px;
  margin-bottom: 20px;
}

.logo-small {
  margin-bottom: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-store {
  font-size: 14px;
  letter-spacing: 2px;
  color: #e8b75b; /* Gold color */
  font-weight: 600;
}

.logo-medspa {
  font-size: 18px;
  letter-spacing: 1px;
  color: #e8b75b; /* Gold color */
  font-weight: 500;
}

/* Footer sections */
.footer-section {
  min-width: 200px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.footer-menu {
  padding-left: 50px;
}

.footer-section h3 {
  color: #e8b75b; /* Gold color */
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Abhaya Libre", serif;
}

/* Footer links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.contact-info a {
  color: #b08f52;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.contact-info a:hover {
  color: #e8b75b; /* Gold color */
  font-size: 16px;
  font-weight: 400;
}

/* Contact info */
.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #b08f52;
  font-size: 16px;
}

.contact-info strong {
  color: #b08f52;
}

/* Attribution */
.attribution {
  font-size: 14px;
  color: #b08f52;
}

.attribution a {
  color: #b08f52;
  text-decoration: none;
}

.attribution a:hover {
  color: #e8b75b; /* Gold color */
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #e8b75b; /* Gold color */
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #e8b75b; /* Gold color */
  color: white;
}

/* Footer divider */
.footer-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  color: #b08f52;
}

.copyright {
  margin-bottom: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 16px;
  color: #b08f52;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #e8b75b; /* Gold color */
}

@media (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}
/* Responsive styles */
@media (max-width: 992px) {
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-section {
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .footer-section {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    margin-top: 10px;
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }
  .footer-section h3 {
    font-size: 15px;
  }
  .contact-info li,
  .footer-links li,
  .attribution {
    font-size: 13px;
  }
  .social-icon {
    width: 32px;
    height: 32px;
  }
}
/**tnc****/
.tnc-sec {
  padding-top: 200px;
}

.stf-header {
  text-align: left;
  margin-bottom: 30px;
}

.stf-header h1 {
  font-size: 2.5rem;
  color: #b08f52;
}

.stf-section {
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.stf-section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #b08f52;
}

.stf-section p,
.stf-section li {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

.stf-section ul {
  padding-left: 20px;
  list-style: disc;
}

@media (max-width: 600px) {
  .stf-container {
    margin: 20px;
    padding: 20px;
  }
  .stf-header h1 {
    font-size: 2rem;
  }
  .stf-section h2 {
    font-size: 1.3rem;
  }
} /*# sourceMappingURL=style.css.map */
