/*
Theme Name: The Garden Room
Theme URI: https://example.com
Author: Robbie Williams
Author URI: https://example.com
Description: Custom theme for The Garden Room waxing studio
Version: 1.0
Text Domain: the-garden-room
*/

body {
    background-color: rgba(245, 187, 172, 0.656);
}

h1 {
    font-family: "Fleur De Leah", "Gill Sans";
    font-size: 50px;
}

.contact_details {
    font-family: Qwigley;
    margin-left: 25px;
    font-size: 25px;
}

/*-----------------------------------
    FONTS
-----------------------------------*/
.fleur-de-leah-regular {
    font-family: "Fleur De Leah", cursive;
    font-weight: 400;
    font-style: normal;
}
.qwigley-regular {
  font-family: "Qwigley", cursive;
  font-weight: 400;
  font-style: normal;
}

/* ----------------------------------
   SCROLLBAR STYLING
-----------------------------------*/
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: rgb(245, 187, 172, 0.656);
}
::-webkit-scrollbar-thumb {
    background: rgba(253, 252, 252, 0.9);
    border-radius: 5px;
    border: 2.5px solid rgba(245, 187, 172, 0.284);
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(3, 3, 3);
}

/* ----------------------------------
   HEADER BAR
---------------------------------- */
.headerbar {
    background-color: rgba(245, 187, 172, 0.656);
    display: flex;
    align-items: center;
    gap: 10px;
}
.the_garden_room_logo {
    border-radius: 5px;
    padding-left: 5px;
}

/*-----------------------------------
    BOOK NOW BUTTON
-----------------------------------*/
.nav_buttons {
    display:flexbox;
    margin-left: auto;
}
.precareaftercare {
    background-color:  rgb(245, 187, 172);
    color: rgb(0, 0, 0);
    padding: 10px 18px;
    margin-right: 10px;
    border-radius: 8px;
    border: 5px double rgba(244, 196, 184, 0.992);
    font-family: Qwigley;
    font-size: 20px;
    text-decoration: none;
    transition: 0.2s ease;
}
.precareaftercare:hover {
    background-color: rgb(234, 165, 176);
    border-color:rgba(245, 187, 172, 0.656);
    transform: scale(1.10);
    color: white;
}
.book_now_btn {
    margin-right: 20px;
    background-color:  rgb(245, 187, 172);
    color: rgb(0, 0, 0);
    padding: 10px 18px;
    border-radius: 8px;
    border: 5px double rgba(244, 196, 184, 0.992);
    font-family: Qwigley;
    font-size: 30px;
    text-decoration: none;
    transition: 0.2s ease;
}
.book_now_btn:hover {
    background-color: rgb(234, 165, 176);
    border-color:rgba(245, 187, 172, 0.656);
    transform: scale(1.10);
    color: white;
}

/* ----------------------------------
   SOCIAL MEDIA ICONS
---------------------------------- */
.wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    list-style: none;
    height: 120px;
    width: auto;
    padding-top: 0;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    z-index: 9999;
}
.wrapper .icon {
    position: relative;
    background: rgba(245, 187, 172, 0.656);
    border: 5px double rgba(245, 187, 172, 0.656);
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: rgb(170, 89, 89);
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
}
.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: rgb(233, 157, 168);
    color: #fff;
}
.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: rgb(233, 157, 168);
    color: #fff;
}

.footer_split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.footer_text p {
    margin: 3px 0;
}
.footer_logo {
    width: 50px;
    border-radius: 151px;
}