* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
} 

@font-face {
    font-family: jf;
    src: url("fonts/Rokurou/Rokurou.ttf") format("truetype");
}

body {
    font-family: 'IM Fell English', serif;
    background-color: #fdf0f1;
}

/* #408d85 - green
#7babff - blue
#e96676 - pink */


/* -------NAV PHONE BAR----------- */


.menu-btn,
  .exit-btn {
      display: none;
      cursor: pointer;
      opacity: 1;
      width: 7rem;

  }
  
  .exit-btn {
      position: absolute;
      top:1%;
      right: 1%;
      padding: 1.2rem;

  }
  
  .modal-nav {
      height: 100vh;
      width: 100%;
      margin: 0 auto;
      display: grid;
      background-color: #408d85;
      position: absolute;
      top:0;
      left: 0;
      transform: translate(-100%);
      transition: all 1s;
      z-index: 9;
  }
  
  .active-modal {
      transform: translate(0);
  }
  
  .show-btn {
      display: block;
      z-index: 5;
  }
  
  .hidden-btn {
      opacity: 0;
  }
  
  .nav-menu-modal {
      display: flex;
      flex-direction: column;
      text-align: center;
      align-self: center;
      /* gap: 4rem; */
      justify-content: space-between;
      list-style: none;
  }
  
  .nav-link-modal {
      font-size: 4rem;
      text-decoration: none;
      color: #fff;
  }



/* //////////HEADER//////////// */

.header {
    padding: 0.6rem 2.4rem;
    background-color: #408d85;
    /* position: fixed; */
    width: 100%;
    z-index: 5;
    background-image: url("imgs/navbg.jpeg");
}

.header-other {
    position: relative;
}

.header-box {
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
}

.logo-box {
    display: flex;
    gap: 2.4rem;
    align-items: center;
}

.logo {
    width: 18rem;
}

.header-nav {
    display: flex;
    gap: 2.4rem;
    align-content: center;
}

.header-link {
    font-size: 3.2rem;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
}

.header-special {
    border-radius: 13px;
    color:#408d85;
    background-color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.header-link:hover {
    transform: scale(1.05);
}

/* Dropdown Button */
.dropbtn {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    padding: 0.6rem 1.2rem;
    font-size: 3.2rem;
    border: none;
    font-family: 'IM Fell English', serif;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #408d85;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: #fff;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    display: block;
    font-size: 3.2rem;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #52968f;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  /* .dropdown:hover .dropbtn {background-color: #3e8e41;} */

/* ////HERO SECTION/////////////////// */

/* .hero {
    padding: 19.2rem 4.8rem 9.6rem;
    background-color: #fdf0f1;
    border-bottom: 3px solid #408d85;
}

.hero-box {
    margin: 0 auto;
    max-width: 140rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
}

.hero-text-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: flex-start;
    justify-content: center;
}

.hero-header {
    font-size: 7.2rem;
    color: #e96676;
    font-family: jf;

}

.hero-text {
    font-size: 2.4rem;
    color:#555;
    font-family: 'Noto Serif Georgian', serif;
}

.hero-btn-box {
    display: flex;
    width: 70%;
    justify-content: space-around;
    align-self: center;
}

a.hero-lm {
    background-color: #fdf0f1;
    color: #7babff;
}

.hero-btn {
    border-radius: 13px;
    padding: 0.6rem 1.2rem;
    font-size: 2.4rem;
    color:#fff;
    background-color: #7babff;
    border: 1px solid #7babff;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
    background-color: #6f9ae6;
    color: #fff;
} */


/* //////////BOOK//////////// */

.book {
    padding: 4.8rem 0rem;
    background-image: url("imgs/para2.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
}

.book-box {
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

.book-container {
    display: grid;
    align-content: center;
    justify-items: center;
    height: 100%;
    width: 100%;
    grid-template-columns: 1fr;
}

.book-strip {
    /* background-color: rgba(255, 255, 255, 0.473); */
    align-self: center;
    justify-self: center;
    width: 100%;
    text-align: center;
}

.book-header {
    font-size: 7.2rem;
    color: #fff;
    font-family: jf;
    letter-spacing: 1.3px;
}

.book-caption {
    font-size: 4.8rem;
    color: #fff;
    font-family: jf;
    letter-spacing: 1.3px;
}

/* ////ABOUT SECTION/////////////////// */

.about {
    padding:4.8rem;
}

.about-box {
    margin: 0 auto;
    max-width: 120rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
}

.about-image-box {
    /* background-color: #e96676; */
    display: flex;
    justify-content: center;
}

.about-img {
    border-radius: 26px;
    width: 50rem;
}

.about-text-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
}

.about-header {
    font-size: 4.8rem;
    color: #25408f;
    font-family: jf;

}

.about-text {
    font-size: 2.4rem;
    color:#555;
}

.about-lower {
    grid-column: 1/3;
}

/* //////////PARALLAX 1 SECTION//////// */

.parallax1 {
    background-image: url("imgs/para1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 50rem;
}


/* ////SWEDISH MASSAGE SECTION/////////////////// */

.sm {
    padding: 9.6rem 4.8rem;
}

.sm-box {
    margin: 0 auto;
    max-width: 120rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4.8rem;
}

.sm-title {
    font-size: 6rem;
    color:#e96676;
    font-family: jf;
}

.sm-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 4.8rem;
}

.sm-item {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
}

.sm-header {
    font-size: 3.6rem;
    color: #333;
}

.sm-text {
    font-size: 2.4rem;
    color: #777;
}

.sm-list {
    font-size: 2.4rem;
    color: #777;
}





/* //////////Z//////////// */

.z {
    padding: 2.4rem 1.2rem 9.6rem;
}

.z-box {
    margin: 0 auto;
    max-width: 120rem;
}

.z-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.8rem;
}

.z-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
    justify-content: center;
    align-items: center;
}

.z-img {
    width: 100%;
}

.z-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2.4rem;
    text-align: center;
}

.z-header {
    font-size: 3.6rem;
    color: #408d85;
}

.z-text {
    font-size: 2.4rem;
    color: #666;
}

.z-link {
    padding: 0.6rem 1.2rem;
    background-color: #e96676;
    color: #fff;
    font-size: 2.4rem;
    text-decoration: none;
    width: 13rem;
    border-radius: 13px;
}


/* //////////MOBILE SECTION//////// */

.mobile {
    background-color: #408d85;
}

.mobile-box {
    padding: 4.8rem 1.2rem;
    margin: 0 auto;
    max-width: 120rem;
}

.mobile-container {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
    align-items: center;
    justify-content: center;
}

.mobile-header {
    font-size: 4.8rem;
    color: #fff;
    text-align: center;
}

.mobile-text {
    font-size: 3.6rem;
    color: #fff;
    text-align: center;
}

.mobile-link {
    padding: 0.6rem 1.2rem;
    background-color: #fff;
    color: #777;
    font-size: 3.6rem;
    text-decoration: none;
    border-radius: 13px;
    text-align: center;
}

/* ------REFLEXOLOGY SECTION--------- */

.reflexology {
    background-image: url('imgs/reflexology-homepage.png');
    background-size: cover;
    padding: 2.4rem 0.6rem;
}

.reflexology-box {
    height: 100%;
    margin: 0 auto;
    max-width: 120rem;
    display: flex;
    justify-content: flex-start;
    justify-items: flex-start;
}

.reflexology-container {
    width: 60rem;
    align-self: center;
    justify-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
}

.reflexology-header {
    font-size: 4.8rem;
    text-align: center;
    color: #333;
}

.reflexology-text {
    font-size: 3.6rem;
    text-align: center;
    color: #fff;
}



  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #7babff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #e96676;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

/* //////////SLIDER//////////// */


.slider {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slide {
    display: none;
    padding: 2rem;
    text-align: center;
    
}

.name {
    color: #333;
    font-weight: bold;
    font-size: 3.6rem;
}

.review {
    color: #777;
    font-size: 2.4rem;
}

.stars {
    display: inline-block;
    position: relative;
    height: 2.5rem;
    width: 12.5rem;
}

.stars:before {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 3.6rem;
    color: #e96676;
}

/* .stars:after {
    content: "★★★★★";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: gold;
    overflow: hidden;
} */

.buttons {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 4.8rem;
}

.review-buttons {
    padding: 1rem 2rem;
    margin: 0.5rem;
    cursor: pointer;
    background-color: #e96676;
    border: #333;
    color: #fff;
}


/* -------CTA SECTION------ */

.cta {
    padding: 9.6rem 0.6rem 1.2rem;
    display: grid;
}

.cta-box {
    max-width: 120rem;
    margin: 0 auto;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
}

.cta-form-page {
    width: 70rem;
    justify-self: center;
}


.cta-text {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    justify-items: center;
    align-items: center;
    color: #777;
}

.cta-title {
    font-size: 4.8rem;
    color: #333;
    text-align: center;
}

.cta-text-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 2.4rem;
    text-align: center;
    padding: 1.2rem;
}

.cta-socials {
    align-self: center;
    justify-self: center;
    display: flex;
    gap: 6.2rem;
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-box {
    border: none;
    border-bottom: 3px solid #408d85;
    resize: none;
    padding: 1.2rem;
    background-color: #fdf0f1;
}

.input-box::placeholder {
    font-family: 'Quicksand', sans-serif;
}



.message-input {
    height: 12rem;
}

.message-input::placeholder {
    font-family: 'Quicksand', sans-serif;
}

.submit-btn {
    width: auto;
    align-self: flex-end;
    padding: 0.6rem 1.2rem;
    border-radius: 13px;
    border: none;
    background-color: #408d85;
    color: #fff;
    font-size: 2.4rem;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
}


/* ////INSURE SECTION/////////////////// */

.insure {
    padding: 4.8rem 1.2rem;
}

.insure-box {
    margin: 0 auto;
    max-width: 120rem;
}

.insure-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4.8rem;
    align-items: center;
    justify-items: center;
}

.insure-img {
    width: 80%;
}



/* -------FOOTER SECTION------ */

.footer {
    padding: 9.6rem 4.8rem;
    /* background-image: url("imgs/footer.jpg"); */
    background-color: #408d85;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;

}

.footer-img {
    position: absolute;
    right:5%;
    bottom: 0;
}

.footer-box {
    max-width: 150rem;
    margin: 0 auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 3rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.footer-logo-copy {
    align-items: center;
}

.footer-logo {
    width: 30rem;
}

.copyright {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
    text-align: center;
}

.footer-socials-box {
    display: flex;
    gap: 2.4rem;
}

.footer-social {
    width: 4.8rem;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-social:hover {
    transform: scale(1.05);
}

.footer-header {
    font-size: 2.8rem;
    padding-bottom: 1.8rem;
    color: #333;
}

.footer-details {
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
}


.footer-link {
    font-size: 2.2rem;
    text-decoration: none;
    color: #fff;
    position: relative;
}

.created-by {
    justify-self: center;
    margin-top: 5rem;
    font-size: 1.8rem;
    color:#333;
    text-align: center;
}

.pauledward {
    text-decoration: none;
    color: #fff;
}

.footer-placeholder {
    font-size: 4.8rem;
}

/* ////////////QUOTE////////// */

.quote {
    padding: 2.4rem 0.6rem 0;
}

.quote-box {
    margin: 0 auto;
    max-width: 160rem;
}

.quote-container {
    display: flex;
    justify-content: center;
}

.quote-header {
    font-size: 4.8rem;
    color: #666;
}



/* //////////PAGE//////////// */

.spacer {
    height: 18rem;
}

.page-title {
    padding: 4.8rem 2.4rem;
    font-size: 7.2rem;
    color:#408d85;
}

.page {
    padding: 4.8rem 2.4rem;
}

.page-box {
    margin: 0 auto;
    max-width: 80rem;
}

.page-container {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
}

.page-info-box {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.page-header {
    font-size: 4.8rem;
    color: #408d85;
}

.page-text {
    font-size: 3.2rem;
    color: #666;
}

.page-centre {
    text-align: center;
}

.bb-para {
    background-image: url("imgs/body-butter-banner.jpeg");
    background-repeat: no-repeat;        background-attachment: fixed;        background-size: cover;  
    background-position: top;      
    height: 50rem;
}

.sm-para {
    background-image: url("imgs/para1.jpg");
    background-repeat: no-repeat;        background-attachment: fixed;        background-size: cover;        
    height: 50rem;
}

.aroma-para {
    background-image: url("imgs/para3.jpg");
    background-repeat: no-repeat;        background-attachment: fixed;        background-size: cover;        
    height: 50rem;
}

.ihm-para {
    background-image: url("imgs/para4.jpg");
    background-repeat: no-repeat;        background-attachment: fixed;        background-size: cover;        
    height: 50rem;
}

.dp-para {
    background-image: url("imgs/para5.jpg");
    background-repeat: no-repeat;        background-attachment: fixed;        background-size: cover;        
    height: 50rem;
}


.bullet-points-list {
    justify-self: center;
    list-style: none;
    /* text-align: center; */
    padding-left: 2.4rem;
}

.bullet-point::before {
    content: "\2022";
    color: #408d85;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.bullet-point {
    font-size: 3.2rem;
    color: #777;
    padding: 0.6rem 0;
}

/* //////////TRIO IMG//////////// */

.trio-img {
    padding: 4.8rem 0.6rem;
}

.trio-img-box {
    margin: 0 auto;
    max-width: 120rem;
}

.trio-img-container {
    display: flex;
    gap: 3.6rem;
    align-items: center;
    justify-content: center;
}

.trio-img-img {
    width: 35rem;
}

/* //////////GALLERY//////////// */

.gallery {
    padding: 4.8rem 0.6rem;
}

.gallery-box {
    margin: 0 auto;
    max-width: 160rem;
}

.gallery-container {
    columns: 3;
    column-gap: 0.6rem;
}

.gallery-img {
    width: 100%;
}