/* Font Awesome icons (Please ensure to include the Font Awesome library) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  margin: 0;
  background-color: #f8f8f8
}

@font-face {
  font-family: Audrey;
  src: url(Audrey/Audrey-MediumOblique.otf);
}

@font-face {
  font-family: Canva Sans;
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url(https://static-cse.canva.com/_next/static/media/canva-sans-scientific.f236f8e5.woff2) format("woff2"),url(https://static-cse.canva.com/_next/static/media/canva-sans-scientific.d1f2441e.woff) format("woff");
  unicode-range: U+00b1-00b3,U+00b9,U+00bc-00be,U+0394,U+03a9,U+03bc,U+03c0,U+2044,U+2070,U+2074-2089,U+2126,U+212e,U+2153-2154,U+215b-215e,U+2202,U+2206,U+220f,U+2211-2212,U+2215,U+2219,U+221a,U+221e,U+222b,U+2248,U+2260,U+2264-2265,U+25ca
}



#navbar {
  background-color: #2C374B;
  color: #2C3639;
  position: fixed; /* Make it stick/fixed */
  top: -70px; /* Hide the navbar 50 px outside of the top view */
  width: 100%; /* Full width */
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 3;
}



nav ul {
  float: right;
  list-style: none;
  margin: 0;
  padding: 20px;
}

nav li {
  margin-right: 20px;
  float: right;
}

nav a {
  color: #fafafa;
  text-decoration: none;
  text-shadow: 0 0 5px rgb(9, 9, 9);
}

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #D1a080;
}

main {
  margin: 0px;
}


#hero {
  position: relative;
  font-family: Audrey, sans-serif;
  /*font-family: "Lucida Handwriting", cursive;*/
  padding: 150px 100px;
  color: #475878;
  /*rgb(182,227,212)*/
  max-width: 100%;
  height: 100vh;
  background-image: url('Images/botox.jpg');
}

#laptop-image {
  display: block;
  margin-top: 15px;
}

#phone-image {
  display: none;
}


#hero h2 {
  font-size: 48px;
  margin: 0;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
  color: #D1a080;
}

#hero p {
  font-size: 24px;
  margin: 20px 0;
  position: relative;
  z-index: 1;
  color: #475878;
}

#hero-tt {
  background-color: #fff;
  max-width: 70%;
  margin: auto;
  padding: 15px;
}

.button {
  display: inline-block;
  color: #475878;
  font-size: 20px;
  padding: 14px 24px;
  margin-top: 15px;
  border: 2px solid #D1a080;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  }

  .button:hover {
    background-color: #D1a080;
  }


  #serv-anchor {display: block; position: relative; top: -10px; visibility: hidden;}

  #services{
      min-height: 80vh;
      justify-content: center;
      align-items: center;
  }

  #services .container{
      margin: 70px 100px;
      padding-top: 20px;
      
    }

    #services h2{
      font-size: 32px;
      text-align: center;
      text-transform: uppercase;
      color: #8F9AB0;
      text-decoration: underline;
      text-decoration-color: #D1a080;
      text-underline-offset: 6px;
    }

    #services h4{
      text-align: center;
    }

    #services p{
      text-align: center;
    }

    #services .text-container{
       display: flex;
       padding-top: 50px;
       text-align: center;
    }

   #services .container-treatments{
    margin: 15px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    color: rgb(19, 19, 19);
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
   } 

    #services .text-container .text-box{
      margin: 15px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      color: rgb(19, 19, 19);
      font-family: 'Nunito Sans', sans-serif;
    }

    #services .text-container .text-box h3{
      font-size: 26px;
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #8F9AB0;
      font-family: Audrey, sans-serif;
    }



  .reveal{
position: relative;
transform: translateY(150px);
opacity: 0;
transition: 1s all ease;
}

.reveal.active{
transform: translateY(0);
opacity: 1;
}


#contact {display: block; position: relative; top: -120px; visibility: hidden;}

.contact-container {
  display: flex;
  padding: 30px 10px 100px;
  margin: auto;
  max-width: 1140px;
  align-content: center;
  font-family: "Poppins", Arial, sans-serif;
}

.info-section {
  flex: 1;
  background-color: #8F9AB0;
  padding: 30px 0px 20px 30px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  border-radius: 5px;
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 10px;
}

   /* Style for clickable links */
   .contact-item a {
    color: #2C374B; /* Change to your preferred link color */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-item a:hover {
    color: #d6bac4; /* Change to your preferred hover color */
}

.form-section {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  position: relative;
  margin-left: -20px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.form-section h2 {
  margin-bottom: 20px;
}

.form-section label {
  display: block;
  margin-bottom: 5px;
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  resize: vertical;
}

.form-section textarea {
  height: 150px;
}

.form-section button {
  background-color: #D1a080;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.form-section button:hover {
  background-color: #d6bac4;
}





.image-certs {
  text-align: center; /* Center the images horizontally */
  padding: 80px 20px; /* Add padding as needed */
}

.certs-container {
  display: flex;
  justify-content: space-around; /* Distribute the space equally between images */
}

.certs-container img {
  max-width: 100%; /* Ensure images don't exceed their container */
  height: auto; /* Maintain aspect ratio */
  border-radius: 2%;
}






#about-anchor {display: block; position: relative; top: -30px; visibility: hidden;}

#about {
  background-color: #8F9AB0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
  font-size: 18px;
}

#about h2 {
  text-decoration: underline;
  color: #2C374B;
}

#about p {
  font-family: 'Nunito Sans', sans-serif;
}


.about-header {
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.hr-1 {
  margin-top: 40px;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}



.two-column-section {
  display: flex;
  height: fit-content;
}

.text-column {
  flex: 0 0 55%; /* Left column takes up 60% width, doesn't grow or shrink */
  padding: 50px; /* Add some spacing inside the column */
  margin: 40px;
  height: fit-content;
  font-size: 17px;
  font-family: 'Nunito Sans', sans-serif;
  font-variation-settings: "opsz" 100;
  background: #f8f8f8;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}



.img-column {
  flex: 0 0 40%; /* Right column takes up 40% width, doesn't grow or shrink */
  padding: 50px 30px; /* Add some spacing inside the column */
}

.img-column img {
  max-width: 100%; /* Make sure the image doesn't exceed the width of its container */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.footer-content {
  background-color: #475878;
  align-items: center; /* Center the child elements horizontally */
  margin-top: 20px;
}

.complaints {
  text-align: center;
  padding: 20px;
  margin: 0;
}

.complaints a {
  color: #000000;
  text-decoration: none;
}


.footer-images {
  display: flex;
  justify-content: center; /* Center the child elements horizontally */
  align-items: center; /* Center the child elements vertically */
  text-align: center;
  height: fit-content;
  padding: 2px;
}

.footer-images a {
  margin: 0 20px; /* Add horizontal margin to create space between images */
}


#footer-bottom{
  color: #f3f3f3;
  background-color: #2C374B;
  width: 100%;
  padding: 10px 0; /* Add some padding to improve spacing */
  text-align: center;
}

  

@media (max-width: 800px) { 

  #services .container {
    margin: 0;
  }

  #about-more {
    height: fit-content;
  }
  
  .about-header {
    width: 90%;
  }

  .two-column-section {
    flex-direction: column; /* Change flex direction to column for small screens */
    align-items: center; /* Center items vertically */

  }

  .text-column,
  .img-column {
    flex: 0 0 100%; /* Take up 100% width on small screens */
    padding: 5px 15px;
  }

}


  @media (max-width: 500px) {

    body {
        width: fit-content;
    }

    nav ul {
      padding: 10px 5px;
    }

    nav a {
      font-size: 11px;
    }

    #hero {
        max-width: fit-content;
        height: 100vh;
        padding: 20% 10%;
        background-image: none;
        background-color: #122045;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    #laptop-image {
      display: none;
    }

    #phone-image {
      display: block;
      /*padding-top: 4%;*/
      max-width: 100%;
      height: auto;

    }

    #hero h2 {
        font-size: 44px;
        display: none;
      }

    #hero p {
        font-size: 14px;
    }

    .button {
      font-size: 16px;
      padding: 12px 20px;
      color: #D1a080;
    }

    .container-treatments{
      font-size: 14px;
    }


    #services {
        max-width: fit-content;
        margin-top: 30px;
        min-height: 60vh;
    }

    #services .container {
        margin: 0%;
    }

    #services h2 {
        font-size: 18px;
    }

    #services .text-container {
        display: inline-block;
        padding: 5px;
        text-align: center;
    }



    #services .text-container .text-box h3 {
        font-size: 15px;
    }

    #services .text-container .text-box p {
        font-size: 12px;
    }

    #contact {display: block; position: relative; top: -50px; visibility: hidden;}

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .info-section {
        padding: 15px;
        width: 80%;
        line-height: normal;
    }

    .info-section h2{
        font-size: 16px;
    }

        .contact-item {
            margin: 0;
            font-size: 13px;
        }

    .form-section {
        margin-left: 0;
        width: 90%;
        font-size: 12px;
    }

    .certs-container {
      display: inline-block;
    }

    #about {
      height: fit-content;
      font-size: 12px;
    }

    .about-header {
      width: 95%;
    }

    .two-column-section {
      display: inline-block;
    }

    .text-column {
      box-shadow: 0 0 5px rgba(0, 0, 0, 0);
    }

    .text-column,
    .img-column {
      flex: 0 0 100%; /* Take up 100% width on small screens */
      padding: 5px 15px;
      font-size: 14px;
    }

    .footer-images img {
      max-width: 50%;
    }

    .footer-images a {
      margin: 0 0;
  }

    #footer-bottom {
      font-size: 12px;
    }

    .complaints {
      padding: 15px;
    }



}



