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

body {
    background-color: #121212;
    font-family: 'PT Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
    background-color: #000000;
}

/* Main navigation */
.main__nav {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999;
}

.main__nav img {
    width: 120px;
}

.main__nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    margin: 0 30px;
    letter-spacing: 1px;
}

.main__nav a:hover {
    color: #888888;
}

.nav__scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
}

/* Mobile navigation */
.mobile__nav {
    position: fixed;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999;
}

.mobile__nav img {
    width: 120px;
}

.mobile__nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
    margin: 0 30px;
    letter-spacing: 1px;
}

.mobile__nav a:active,
.mobile__nav a:hover {
    color: #444444;
}

.mobile__nav .icon i {
    color: #fff;
    margin-right: 20px;
}

.mobile__links {
    position: absolute;
    top: 93px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 999;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), black 100%);
    height: 100vh;
}
.mobile__links a {
    padding: 20px 0;
}

@media (max-width: 1100px) {
    .main__nav {
        display: none;
    }

    .mobile__nav {
        display: flex;
        justify-content: space-between;
    }
    .mobile__nav .mobile__links {
        display: none;
    }
}

@media (min-width: 1101px) {
    .main__nav {
        display: flex;
    }

    .mobile__nav {
        display: none;
    }
}



/* Hero section */
.hero__section {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 600px) {
    .hero__section {
        background-attachment: initial !important;
        background-position: center !important;
    }
}

.hero__logo {
    margin-bottom: 3rem;
    position: relative;
}

.hero__logo .title {
    font-family: 'farleymf';
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: calc(2.5em + 1vmin);
    margin-bottom: 15px;
    padding: 0;
    display: none;
}

.hero__logo .subtitle {
    font-family: 'farleymf';
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: calc(1.5em + 1vmin);
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    display: none;
}

.hero__logo img {
    height: 30vh;
    position: relative;
}

.hero__button a {
    background-color: #EFD191;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    border: 0;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: background-color 0.5s;
}

.hero__button a:hover {
    background-color: #121212;
    color: #fff;
}

/* Dividers */
.top__divider {
    background: url('../images/paint-border.webp') center;
    background-size: cover;
    width: 100%;
    height: 142px;
    margin-top: -140px;
}

.bottom__divider {
    background: url('../images/paint-border.webp') center;
    background-size: cover;
    width: 100%;
    height: 142px;
    transform: rotate(180deg);
    margin-bottom: -140px;
}


/* Services section */
.services__section {
    background: url('../images/pattern_paint_white.jpg');
    padding: 120px 0;
    position: relative;
}

.services__section .section__title {
    margin-bottom: 100px;
    position: relative;
}

.services__section .section__title::after {
    content: "";
    background: #444444;
    position: absolute;
    bottom: 10;
    left: calc(50% - 50px);
    height: 3px;
    width: 100px;
    margin-top: 30px;
}

.services__section .section__title h2 {
    font-family: 'Playfair Display', serif;
    color: #444444;
    font-size: 3rem;
}

.services__section .service__column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px;
}

.services__section .service__row {
    margin-bottom: 10px;
    position: relative;
}

.services__section .service__row::before {
    content: "";
    position: absolute;
    background: #EFD191;
    top: 13px;
    left: 6px;
    height: 9px;
    width: 23px;
    z-index: 3;
}

.services__section .service__name {
    color: #444444;
    font-weight: 700;
    font-size: 15px;
    z-index: 4;
}

.services__section .service__dots {
    border-bottom: #EFD191 dotted 2px;
    margin-bottom: 6px;
}

.services__section .service__price {
    text-align: end;
}

.services__section .service__description {
    font-size: 13px;
}

.services__section .service__image__row {
    margin-top: 50px !important;
}

.services__section .service__image {
    display: flex;
    justify-content: center;
}

/* Barbers section */
.barbers__section {
    background: url('../images/bg.webp');
    padding: 120px 0;
}

.barbers__section .section__title {
    margin-bottom: 30px;
    position: relative;
}

.barbers__section .section__title h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 30px;
}

.barbers__section .barbers__row {
    justify-content: center;
}

.barbers__section .barbers__column {
    text-align: center;
}

.barbers__section .barbers__column img {
    width: -webkit-fill-available;
}

.barbers__section .barbers__column h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 3px;
    margin-top: 20px;
}

.barbers__section .socials__column {
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 9;
}

.barbers__section .socials__column a {
    margin: 0 10px;
    color: #fff;
}

.barbers__section .salonic__button a {
    border-bottom: solid 2px #EDCA89;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    padding: 0.5rem 0.5rem;
    font-weight: 600;
    transition: padding 0.2s;
}

.barbers__section .salonic__button a:hover {
    padding: 0.5rem 0rem;
    color: #fff;
}

/* Reviews section */
.reviews__section {
    background: url('../images/pattern_paint_white.webp');
    padding: 120px 0;
    position: relative;
}

.reviews__section .section__title {
    margin-bottom: 100px;
    position: relative;
}

.reviews__section .section__title::after {
    content: "";
    background: #444444;
    position: absolute;
    bottom: 10;
    left: calc(50% - 50px);
    height: 3px;
    width: 100px;
    margin-top: 30px;
}

.reviews__section .section__title h2 {
    font-family: 'Playfair Display', serif;
    color: #444444;
    font-size: 3rem;
}

.reviews__section .section__title p {
    color: #444444;
}

.reviews__section .reviews__row {
    justify-content: center;
    padding: 0 150px;
}

#widget-reviews-embed h2 {
    font-family: 'Playfair Display', serif;
    color: #444444;
    font-size: 3rem;
}


/* Contact section */
.contact__section {
    padding: 120px 0;
    background: url('../images/bg.webp');
    color: #fff;
}

.contact__section .section__title {
    margin-bottom: 100px;
    position: relative;
}

.contact__section .section__title::after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 10;
    left: calc(50% - 50px);
    height: 3px;
    width: 100px;
    margin-top: 30px;
}

.contact__section .section__title h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 30px;
}

.contact__section .section__title p {
    color: #fff;
}

.contact__section .contact__row {
    justify-content: center;
    padding: 0 150px;
}

@media (max-width: 770px) {
    .contact__section .contact__row {
        padding: 0 30px;
    }
}

.contact__section .contact__column {
    text-align: center;
}

.contact__section .contact__column input[type="text"],
.contact__section .contact__column input[type="email"],
.contact__section .contact__column textarea {
    background-color: transparent;
    color: #fff;
    padding: 1rem 1rem;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}

.contact__section .contact__column input[type="text"]:active,
.contact__section .contact__column input[type="email"]:active,
.contact__section .contact__column textarea:active,
.contact__section .contact__column input[type="text"]:focus,
.contact__section .contact__column input[type="email"]:focus,
.contact__section .contact__column textarea:focus {
    border-bottom: 1px solid #fff;
    outline: none;
}

.contact__section .contact__column button {
    background-color: #EFD191;
    color: #000;
    border: 0;
    padding: 0.7rem 2rem;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.5s;
}

.contact__section .contact__column button:hover {
    background-color: #EFD191;
}

.map__section .map {
    -webkit-filter: grayscale(100%) invert(0.9);
    -moz-filter: grayscale(100%) invert(0.9);
    -ms-filter: grayscale(100%) invert(0.9);
    -o-filter: grayscale(100%) invert(0.9);
    filter: grayscale(100%) invert(0.9);
}

/* Footer */
footer {
    background: url('../images/bg.webp');
    padding-top: 25px;
    padding-bottom: 0;
}

footer .footer__column {
    text-align: center;
    margin-bottom: 30px;
}

footer .footer__title {
    margin-bottom: 15px;
}

footer .footer__title h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 3px;
    margin-top: 20px;
}

footer .footer__description {
    color: #fff;
}

footer .footer__description p {
    margin: 0;
}

footer .footer__socials a {
    color: #fff;
    padding: 0 10px;
}

footer .copyright__row {
    margin-top: 20px;
}

footer .copyright__column {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

/* Salonic booking button */
#salonic-booking-widget-button-container {
    bottom: 24px !important;
    left: auto !important;
    right: 24px !important;
}
#salonic-booking-widget-button {
    background-color: #131313 !important;
    background-image: url('../images/calendar.webp') !important;
}
