/*
   Theme: Thrive
   Author: QBIT
   Date: 29/09/2025

   File path: /
*/

/* Import fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Quicksand:wght@300..700&display=swap');

/* Root styles */
:root {
   /* Background vars */
    --green: #92a38e;
    --pink: #e2a481;
}
/* Global styles */
* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
   min-height: 100dvh;
   font-size: 1rem;
   font-family: 'Quicksand', sans-serif;
   color: #333;
   line-height: 1.6;
   background: linear-gradient(135deg, var(--green) 10%, var(--pink) 100%, var(--green) 30%);
   background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6 {
   font-size: 1.6rem;
   /* font-family: 'Poppins', sans-serif; */
   font-family: "Lato", sans-serif;
   font-weight: 300;
   color: #333;
   line-height: 1.2;
   letter-spacing: 0.1em; 
   margin-bottom: 1.25rem;
}

p {
   margin-bottom: 1.25rem;
}

a {
   text-decoration: none;
   transition: color 0.3s ease, transform 0.5s ease-in-out;
   color: #333;
}

a:hover {
   color: var(--pink);
}

ul {
   list-style: none;
   margin-bottom: 1.25rem;
}

img {
    width: 100%;
    vertical-align: bottom;
}

/* Header styles */
header .col-4 {
   position: relative;
   display: flex;
   justify-content: center;
}

header nav {
   position: absolute;
   top: 40px;
   right: 0;
}

header nav li {
   display: inline-block;
}

header a:hover {
   color: #333;
}




header {
   width: 100%;
   height: 120px;
   position: fixed;
   left: 0;
   top: 0;
   background-color: #e2a481; /* initial */
   z-index: 1000;
   transform: translateY(0);
   transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

header.hide {
   transform: translateY(-100%);
}

header.show-white {
   transform: translateY(0);
   background-color: #fff;
}

header.show-original {
   transform: translateY(0);
   background-color: #e2a481;
}

header .logo {
   display: none; /* hidden by default */
   transition: opacity 0.3s ease;
}

header.show-white .logo {
   display: block; /* show when header is white */
   opacity: 1;
}

.logo {
   width: 150px;
   height: 75px;
   display: inline-block;
   background: url('/uploads/svg/logo.svg') no-repeat center / contain;
   text-indent: -9999px;
}

/* Navigation styles */
.burger { 
    position: fixed; 
    top: 20px; 
    right: 20px; 
    cursor: pointer;
    z-index: 1001;
} 

.burger div { 
    width: 1.875rem; 
    height: 0.0625rem; 
    background: #333; 
    margin-bottom: 0.4375rem; 
    transition: 0.4s; 
} 

.change .bar1 { 
    transform: translateY(0.75rem) rotate(-45deg);
} 

.change .bar2,.change .bar3 { 
    opacity: 0; 
} 

.change .bar4 { 
    transform: translateY(-0.75rem) rotate(45deg);
}

#menu {
   width: 300px;
   height: 100vh; /* full height */
   background: #92a38e;
   position: fixed;
   top: 0;
   right: -50%; /* hide it off-screen initially */
   transition: right 0.3s ease; /* smooth slide */
   padding: 50px 20px 20px 20px;
   z-index: 1000;
}

#menu.active {
   right: 0; /* slide in */
}

#menu a {
   color: #fff;
   display: block;
}

#menu li {
   border-bottom: solid 1px #fff;
   padding: 10px 0 10px 0;
   transition: padding-left 0.3s ease; /* Smooth transition added */
}

#menu li:hover {
   padding-left: 10px;
}

.menu {
   position: fixed;
   top: 25px;
   right: 55px;
   font-size: 0.7em;
   font-weight: 700;
   z-index: 1001;
}

.telephone {
   position: absolute;
   left: 0;
   top: 35px;
   background: url('/uploads/svg/telephone.svg') no-repeat left center / 35px auto;
   display: inline-block;
   align-items: center;
   font-weight: 700;
   padding: 10px 0 10px 40px;
}

.telephone.hide-number {
    text-indent: -9999px; /* Hide text off-screen */
    overflow: hidden;
}









/* Carousel styles */
#carousel h1 {
   color: #fff;
   font-size: 3.0em;
}

#carousel h2 {
   color: #fff;
}








/* Carousel styles */
#carousel {
   color: #fff;
   padding: 150px 20px 50px 20px;
}

.logo-wh {
   width: 200px;
   height: 110px;
   display: block;
   background: url('/uploads/svg/logo-wh.svg') no-repeat center / contain;
   text-indent: -9999px;
   margin: 50px auto 50px;
}

/* Footer styles */
footer {
   background-color: #f0f0f0;
   padding: 30px 0 30px 0;
}

.copyright {
   margin-top: 30px;
}

/* Main styles */
#main {
  width: 100%;
  background-color: #fff;
  padding: 1.875rem 0;
}

/* Contact styles */
.contact li {
   padding: 10px 0 10px 0;
}

/* Social styles */
.facebook {
   height: 35px;
   width: 35px;
   background: var(--green) url('/uploads/svg/facebook.svg') no-repeat center / contain;
   border-radius: 100px;
   display: block;
   text-indent: -9999px;
}

.instagram {
   height: 35px;
   width: 35px;
   background: var(--green) url('/uploads/svg/instagram.svg') no-repeat center / contain;
   border-radius: 100px;
   display: block;
   text-indent: -9999px;
}

/* Back to top styles */
.top { 
  width: 2.8125rem;
  height: 2.8125rem;
  position: fixed; 
  border-radius: 6.25rem;
  bottom: 0; 
  left: 50%; 
  transform: translate(-50%, -50%);
  display: none;
  background: rgba(255, 255, 255, 0.5) url('/uploads/svg/top.svg') center center / 1.25rem no-repeat;
  cursor: pointer;
}

/* Cookie Bar styles */
#cookie {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  color: #fff;
  background: rgba(20,20,20,0.8); 
  text-align: center;
  padding: 1.25rem;
  z-index: 1000;
}

#cookie p {
  margin: 0;
}

#cookie a {
  color: #fff;
}

#cookie .btn {
  color: #333;
  cursor: pointer;
}

#cookie .btn:hover {
  color: #fff;
}

/* Services styles */


.services {
   display: flex;
   justify-content: center;  /* centers row horizontally */
   gap: 20px;                /* space between circles */
   flex-wrap: wrap;          /* allows wrapping on smaller screens */
}

.service {
   width: 250px;
   height: 250px;
   border-radius: 50%;
   background: #92a38e;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: white;
   text-decoration: none;
   padding: 20px;
   transition: background 0.5s ease-in-out;
}

.service:hover {
   background: #e2a481;
   color: #fff;
}

/* List styles */
.list li {
   background: url('/uploads/svg/li.svg') left top 15px / 12px no-repeat;
   padding: 10px 0 10px 20px;
}

@media (max-width: 48rem) { 

    /* Cookie bar styles */
    #cookie .btn {
      display: block;
      margin-top: 0.625rem;
    }

}