/*
Theme Name: wdc_blank
Theme URI: https://webdevchamps.com
Author: Eric Long & Scott Dallas Espenschied
Description: A truly blank slate made by Web Dev Champs
Version: 1.0.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: wdc_blank
*/

/* COLORS

black: #000000
gold: #ffd400

*/

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
        url('fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Black.woff2') format('woff2'),
        url('fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

*,*::before, *::after{
    box-sizing: border-box;
}
body{
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
    font-family: 'Poppins' !important;
}
img{
    width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
li, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
a:link, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}
.bg {
    background: url('https://northendtatt.com/wp-content/uploads/2025/05/background.png');
    background-repeat: repeat;
    background-position: center;
    background-size: 150px 200px;
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: -2;
}
.bg2{
    background: rgba(0, 0, 0, 0.5);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}
h1{
    font-size: 42px;
}
h2{
    font-size: 36px;
}
#header{
    text-align: center;
    background-color: rgba(0, 0, 0, .65);
}
#top_bar{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 40px;
    background-color: #000000;
}
#ig_menu{
    position: absolute;
    z-index: 1000;
    left: -150px;
    top: 39px;
    transition: ease-out .5s;
    background-color: #000000;
    padding: 10px 20px 10px 10px;
}
#ig_menu ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#ig_menu ul li{
    display: flex;
    align-items: center;
}
#ig_menu ul a + a{
    margin-top: 10px;
}
#ig_menu ul li p{
    font-size: 24px;
    margin-bottom: 0;
}
#shop_logo{
    max-width: 450px;
    width: 75%;
    margin-top: 40px;
}
#social_tray{
    display: flex;
    flex-direction: column;
    margin-bottom: 10vh;
}
#social_tray a{
    display: flex;
    align-items: center;
    font-size: 24px;
}
#social_tray a + a{
    margin-top: 15px;
}
#social_tray a img{
    margin-right: 10px;
}
#social_tray img, #hamburger img, #callNdir img{
    width: 40px;
}
#hamburger{
    background: black;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: fixed;
    right: 0;
    z-index: 1000;
    border: 2px solid #fec400;
    border-radius: 6px;
}
#mobile-menu{
    position: fixed;
    top: 0;
    right: -88vw;
    padding: 20px;
    background-color: rgba(0, 0, 0, .95);
    z-index: 999;
    transition: ease-out .5s;
    width: 85vw;
    height: 100vh;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
}
#menu-menu-1{
    display: none;
} 
#mobile-menu li {
    font-size: 24px;
}
#mobile-menu li + li{
    margin-top: 10px;
}
.moveIG{
    left: 0 !important;
}
.moveNav{
    right: 0 !important;
}
.callNdir img{
    background: #ffd400;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid black;
    color: black;
}
#container{
    margin: 20px 0;
    padding: 0 15px;
}
#footer{
    padding-bottom: 50px;
    padding-left: 15px;
    padding-top: 20px;
    background-color: rgba(0, 0, 0, .65);
}
#hours{
    margin-bottom: 20px;
}
#shop_address{
    margin-bottom: 0;
}
#shop_phone{
    margin-bottom: 20px;
}
#goog_review, #slider {
    margin-bottom: 20px;
}
p{
    font-size: 20px;
}
.layout_container{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.booking_btn {
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 900;
    color: black !important;
    background-color: #ffd400;
  }
  
.booking_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
  
.booking_btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
  
.booking_btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
  
.booking_btn::after {
    background-color: #ffd400;
}
  
.booking_btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
#shop_address_dtop, #footer_socials, .bar{
    display: none;
}
#hours, #menu-footer-menu{
    font-size: 20px;
}
#menu-footer-menu{
    text-decoration: underline;
}
.menu-footer-menu-container{
    margin-bottom: 20px;
}
.igc-carousel-container{
    height: auto;
}
.desktop_only{
    display: none;
}
#chrishighlightcontent, #aaronhighlightcontent, #kaileyhighlightcontent{
    display: none;
    background: #000000;
    padding: 30px;
    margin-top: 30px;
    border-radius: 50px;
}
.booking-btn-back{
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.booking-btn-back .the_btn{
    font-size: 12px;
}
/* BOOKLY */

.bookly-form-group select, textarea{background-color: black !important;}
.bookly-time-from .bookly-js-select-time-from, .bookly-time-to .bookly-js-select-time-to{padding-right: 25px !important;}
[data-type="category"], [data-type="staff"] {
    display: none !important;
}
.bookly-service-step{
    max-width: 500px;
    margin: 0 auto;
}


@media screen and (max-width: 650px){

.bookly-form ol.bookly-stepper{
    background: linear-gradient(180deg, #424242 10.9px, silver 11px, silver 12.9px, #424242 13px);
}
.bookly-form ol.bookly-stepper li::before, .bookly-form ol.bookly-stepper li {
    outline: 4px solid #424242;
}
}

/* END BOOKLY */

.the_btn{
    position: relative;
    font-size: 17px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1em 2.5em;
    display: inline-block;
    cursor: pointer;
    border-radius: 6em;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    font-weight: 900;
    color: black !important;
    background-color: #ffd400;
    width: 260px;
}
.the_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.the_btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.the_btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
.the_btn::after {
    background-color: #ffd400;
}
.the_btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

#booking{
    max-width: 1000px;
    margin: 0 auto;
    background-color: #000000;
    padding: 30px;
    transition: ease-in-out 2s;
}
.showform{
    display: block !important;
}
#booking-btn-cont{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
#booking-form-cont{
    margin: 20px auto;
}
.book_card{
    width: 300px;
    height: 450px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 68px;
    background-color: #000000;
    padding: 10px;
    border-radius: 10px;
}
.book_card:hover{
    background-color: #ffffff;
}
.book_card_selected{
    background-color: #ffffff;
}
.booking_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 10px;
}
#tos, #pp{
    background-color: rgba(0, 0, 0, .5);
    padding: 30px;
}

.newcard {
    border-radius: 30px;
    background: #212121;
    box-shadow: 15px 15px 30px rgb(25, 25, 25),
                -15px -15px 30px rgb(60, 60, 60);
    padding: 20px;
    max-width: 85vw;
    margin: 0 auto;
}
.newcard h2{
    margin-bottom: 10px;
}
img.mobile{
    border-radius: 30px;
    max-width: 85vw;
    margin: 20px auto;
}
.mobile{
    display: block;
}
.desktop{
    display: none;
}
body.noscroll {
    overflow: hidden;
}
#form-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#form-lightbox.hidden {
    opacity: 0;
    visibility: hidden;
}

#form-lightbox-content {
    background: #000000;
    padding: 30px;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.seo_navlist{
    margin: 30px auto 15px;
}
.seo_navlist a{
    text-decoration: underline;
    color: #ffd400;
}
.list{
    margin: 16px 0;
    list-style: inside;
}
.list li + li{
    margin-top: 8px;
}
.seo_section{
    margin-top: 15px;
}
.seo_section + .seo_section{
    margin: 15px auto;
}
.seo_section h2{
    padding-top: 20px;
}

/* DESKTOP STYLES */
  @media (min-width: 1024px){
    .mobile{
        display: none;
    }
    .desktop{
        display: block;
    }
    .newcard{
        margin: 20px auto;
        padding: 35px;
    }
    .flexitem{
        margin-right: 30px;
        max-width: 60vw;
    }
    .flexitemimg{
        height: 400px;
        overflow: hidden;
        border-radius: 30px;
    }
    .flexcont {
    display: flex;
    }
    #top_bar{
        display: none;
    }
    #slider{
        margin-bottom: 0;
    }
    #shop_logo{
        margin-top: 0;
    }
    #mobile-menu, #hamburger{
        display: none;
    }
    #menu-menu-1{
        display: flex;
        justify-content: flex-end;
    }
    #menu-menu-1 li + li {
        margin-left: 10px;
    }
    #dt_logo{
        background-color: rgba(0, 0, 0, .8);
    }
    #dtopbar{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #shop_address_dtop{
        display: block;
        margin-bottom: 5px;
        margin-left: 5%;
        align-self: flex-end;
    }
    .menu-menu-1-container{
        margin-right: 5%;
    }
    #menu-menu-1 li a {
        position: relative;
        font-size: 17px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 1em 2.5em;
        display: inline-block;
        cursor: pointer;
        border-radius: 6em;
        transition: all 0.2s;
        border: none;
        font-family: inherit;
        font-weight: 900;
        color: black !important;
        background-color: #ffd400;
        }
    #menu-menu-1 li a:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
    #menu-menu-1 li a:active {
        transform: translateY(-1px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
    #menu-menu-1 li a::after {
        content: "";
        display: inline-block;
        height: 100%;
        width: 100%;
        border-radius: 100px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: all 0.4s;
        }
    #menu-menu-1 li a::after {
        background-color: #ffd400;
        }
    #menu-menu-1 li a:hover::after {
        transform: scaleX(1.4) scaleY(1.6);
        opacity: 0;
        }
    #menu-menu-1 li + li{
        margin-top: 0;
    }
    #container{
        padding: 0;
        margin: 0 5%;
    }
    #feet{
        margin: 0 10%;
    }
    #shop_info{
        display: flex;
        justify-content: flex-end;
    }
    .bar{
        display: block;
        background-color: white;
        width: 2px;
        margin: 0 40px;
    }
    #footer_socials{
        display: block;
        font-size: 20px;
        text-decoration: underline;
    }
    .foot_icon{
        width: 50px;
    }
    #footer_socials li a{
        display: flex;
        align-items: center;
    }
    #footer_socials li a p{
        margin: 0 0 0 10px;
    }
    #footer_socials li + li{
        margin-top: 10px;
    }
    .menu-footer-menu-container{
        margin-bottom: 0;
    }
    #da_bottom{
        text-align: center;
    }
    #da_bottom p, #copyright{
        font-size: 16px;
    }
    #booking-btn-cont{
        flex-direction: row;
        justify-content: space-evenly;
    }
    .the_btn + .the_btn{
        margin-top: 0;
    }
    .flex_cont{
        display: flex;
        text-align: left;
    }
    .desktop_only{
        display: block;
    }
    .igc-carousel-container{
        height: 450px;
    }
  }
