@font-face {
    font-family: CenturyGothic-Regular;
    src: url('../font/CenturyGothic-Regular.ttf');
}

@font-face {
    font-family: CenturyGothic-Bold;
    src: url('../font/CenturyGothic-Bold.TTF');
}

:root {
    --theme-color-1: #b2844d;
    --theme-color-2: #1f1f1f;
    --theme-color-3: #f2f2f2;
    --bg-white: #ffffff;
    --bg-black: #07070a;
    --font-color: #646464;
    --heading-color: #1f2324;
    --font-white: #ffffff;
    --font-black: #000000;
}


body {
    background-color: var(--bg-white);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}

h1 {
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}；
h2,
h3 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'CenturyGothic-Bold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theme-btn {
    border-radius: 0px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-1);
    transition: all .5s ease-out;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #623819;
}

.btn-secondary {
    color: var(--theme-color-1);
    background-color: var(--font-white);
    transition: all .5s ease-out;
}

.btn-secondary:hover {
    background-position: left bottom;
    color: #fff;
    background-color: var(--theme-color-1);
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
    width: 100%; height: 100%;
    top: 0; left: 0;
    position: fixed;
    display: flex; justify-content: center; align-items: center;
    background: linear-gradient(180deg, #fefefe 0%, #f7f3ea 50%, #efe8d5 100%);
    z-index: 9999;
}

/* ── 品牌徽章加载器容器（呼吸 + 光环）── */
.brand-loader {
    position: relative; display: flex;
    justify-content: center; align-items: center;
    animation: loaderBreathe 2.4s ease-in-out infinite;
}

.brand-loader img {
    max-width: 260px; width: auto; height: auto;
    filter: drop-shadow(0 6px 24px rgba(166,124,0,0.22));
}

/* 外层旋转虚线光环（金色） */
.brand-loader::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 2.5px dashed rgba(184,134,11,0.28);
    border-top-color: #b8860b;
    animation: loaderSpin 10s linear infinite;
}
/* 内层细线光环（反向慢转） */
.brand-loader::after {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(184,134,11,0.07);
    animation: loaderSpin 18s linear infinite reverse;
}

@keyframes loaderBreathe {
    0%, 100% { transform: scale(0.95); opacity: .85; }
    50% { transform: scale(1.03); opacity: 1; }
}

@keyframes loaderSpin {
    from   { transform: rotate(0deg); }
    to     { transform: rotate(360deg); }
}

.error-msg{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -15px;
    font-size: 10px;
    left: 0px;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #2e7dab;
    font-size: 14px;
    z-index: 10;
    top: 65px;
    left: 0;
	color: #fff;
}

.subscribe-inner{
	position: relative;
}

.subscribe-inner form{
	position: relative;
}

.check-success-icon{
	margin-right: 10px;
    padding: 10px;
    color: #fff;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}
.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}
.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}
.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 10px;
    background: #001941;
    font-size: 14px;
    z-index: 10;
    bottom: -150px;
    left: 0;
    padding-left: 3px;
	color: #fff;
	width: 265px;
}
.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}
.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: auto;
    flex-direction: column;
    padding-top: 0px;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);                 /* 白底 */
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black) !important;               /* 黑字 */
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1) !important;
}

/* 移动端展开菜单：白底 + 黑字，保证展开时有对比 */
@media (max-width: 991px){
    .navbar-collapse{
        background-color: #ffffff;
        margin-top: 12px;
        padding: 10px 16px 16px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,.15);
        border: 1px solid #eee;
    }
    .navbar-collapse .nav-link{
        color: var(--font-black) !important;
    }
    .navbar-collapse .dropdown-menu{
        background-color: #fff;
        box-shadow: none;
    }
    .navbar-collapse .dropdown-menu li a{
        color: var(--font-black) !important;
    }
    .navbar-collapse .dropdown-menu li a:hover{
        color: var(--theme-color-1) !important;
    }
    .navbar-toggler{
        color: var(--font-black);
        border-color: #ccc;
    }
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

/* 顶部导航搜索框 */
.nav-search{
    display: flex;
    align-items: center;
}
.nav-search-input{
    width: 180px;
    max-width: 100%;
    height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.5);
    border-right: none;
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    outline: none;
}
.nav-search-input::placeholder{ color: rgba(255,255,255,.7); }
.nav-search-input:focus{
    border-color: #fff;
    background: rgba(255,255,255,.2);
}
.nav-search-btn{
    height: 40px;
    width: 44px;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}
.nav-search-btn:hover{
    background: var(--theme-color-1);
    border-color: var(--theme-color-1);
    color: #fff;
}

/* 滚动收起为白底导航时，搜索框改为深色文字 */
.navbar.fixed-top .nav-search-input,
.navbar.fixed-top .nav-search-btn{
    border-color: #ccc;
    background: #fff;
    color: #333;
}
.navbar.fixed-top .nav-search-input::placeholder{ color: #999; }
.navbar.fixed-top .nav-search-btn:hover{
    background: var(--theme-color-1);
    border-color: var(--theme-color-1);
    color: #fff;
}

@media (max-width: 991px){
    .navbar .container{ flex-wrap: wrap; }
    .nav-item.search{ flex-basis: 100%; order: 10; margin-top: 10px; }
    .nav-search{ width: 100%; }
    .nav-search-input{ flex: 1; width: auto; }
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: transparent;
    padding: 12px 0px;
    width: 100%;
    border-bottom: 1px dashed #464646;
    margin-bottom: 15px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--font-white);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-white);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.fixed-top .topbar-contact-wrapper ul li a{
    color: var(--font-black);
}

.navbar.fixed-top .topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
}

.navbar.fixed-top .topbar-social li a{
    color: var(--theme-color-1)
}

.navbar-brand img{
    width: 144px;          /* 原 180px 的 80% */
    height: auto;
}
@media (max-width: 575px){
    .navbar-brand img{ width: 116px; }
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    z-index: 11;
}

.section-heading{
    font-size: 36px;
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-align: center;
}

.section-description{
    font-family: 'CenturyGothic-Bold', sans-serif;
    color: var(--font-black);
    text-align: center;
    font-size: 18px;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../image/banner-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
}

.banner-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 9;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-description{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 0px;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.banner-btns{
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 2rem;
}

.banner-layer-container{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 10;
    margin-top: -6rem;
}

.banner-layer-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 25px;
}

.banner-layer-wrapper.one{
    background-color: var(--theme-color-3);
}

.banner-layer-wrapper.two{
    background-color: var(--theme-color-1);
}

.banner-layer-wrapper.three{
    background-color: var(--theme-color-2);
}

.banner-layer-heading{
    width: 100%;
    position: relative;
    color: var(--heading-color);
    font-size: 24px;
    margin: 15px 0px;
}

.read-more-link{
    width: 100%;
    position: relative;
    display: inline-block;
    font-family: 'CenturyGothic-Bold', sans-serif;
    margin-top: 20px;
}

.two .banner-layer-heading{
    color: var(--font-white);
}

.three .banner-layer-heading{
    color: var(--font-white);
}

.two .banner-layer-description{
    color: var(--font-white);
}

.three .banner-layer-description{
    color: var(--font-white);
}

.two .read-more-link{
    color: var(--font-white);
}

.three .read-more-link{
    color: var(--font-white);
}

.banner-layer-wrapper img{
    width: 40px;
    margin-bottom: 15px;
}

.banner-book-appointment{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 4rem 0rem;
}

.banner-book-appointment h3{
    font-size: 28px;
    margin-bottom: 10px;
}

.about-container{
    background-color: var(--theme-color-3);
}

.about-content-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.about-content-wrapper h3{
    font-size: 32px;
    margin-bottom: 1.5rem;
}

.about-content-wrapper p{
    margin-bottom: 2rem;
}

.about-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.about-image-wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.funfactor-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.funfactor-img{
    margin-right: 20px;
}

.funfactor-img img{
    width: 40px;
}

.funfactor-content h3{
    font-size: 32px;
    color: var(--theme-color-1);
    margin-bottom: 5px;
}

.funfactor-content p{
    color: var(--heading-color);
    text-transform: uppercase;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.services-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 350px;
    background-image: url('../image/services-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-navtabs .nav-pills .nav-item{
    flex: 25%;
}

.service-navtabs .nav-pills .nav-item .nav-link{
    width: 100%;
    background-color: var(--font-white);
    text-align: center;
    display: flex;
    border-radius: 0px;
    padding: 20px;
    justify-content: center;
    height: 70px;
    color: var(--heading-color);
    text-transform: uppercase;
    font-family: 'CenturyGothic-Bold', sans-serif;
}

.service-navtabs .nav-pills .nav-item .nav-link.active{
    background-color: var(--theme-color-1);
    color: var(--font-white);
}

.service-layer{
    margin-top: -70px;
    position: relative;
    width: 100%;
    background-color: transparent;
    padding-bottom: 60px;
}

.service-navtabs .tab-content{
    background-color: var(--font-white);
    padding: 3rem;
    padding-bottom: 15px;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 10%);
}

.sercice-list-item{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.sercice-list-item h3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    margin-bottom: 15px;
}

.barber-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    height: 100%;
    background-color: var(--font-white);
}

.barder-image{
    min-width: 160px;
    height: 100%;
    position: relative;
    display: inline-block;
    width: 160px;
}

.barder-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.barder-content{
    width: 100%;
    padding: 25px;
}

.barber-name{
    font-size: 20px;
    margin-bottom: 5px;
}

.barber-designation{
    text-transform: uppercase;
    margin-bottom: 15px;
}

.barber-social{
    margin-top: 20px;
}

.barber-social li{
    display: inline-block;
}

.barber-social li a{
    margin-right: 15px;
}

.barber-contact{
    position: absolute;
    right: 0;
    bottom: 0;
}

.barber-contact li a{
    width: 30px;
    height: 30px;
    background-color: var(--theme-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
}

.barber-contact li {
    margin-top: 10px;
}

.barbers-container{
    background-color: var(--theme-color-3);
}

.trends-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 250px;
}

.trends-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cares-container{
    background-color: var(--theme-color-3);
}

.care-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 25px;
    background-color: var(--font-white);
    height: 100%;
}

.care-content h3{
    font-size: 20px;
    color: var(--heading-color);
}

.care-content ul {
    margin: 5px 0px;
}

.care-content ul li{
    display: inline-block;
}

.care-content ul li i{
    color: #b2844d;
}

.care-content h4{
    font-size: 20px;
    color: var(--heading-color);
}

.care-image{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.care-image img{
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.testimonial-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../image/testimonial.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-container:before{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    content: '';
    background-color: rgb(0 0 0 / 60%);
}

.testimonial-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    z-index: 11;
    height: 100%;
}

.testimonial-content{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--font-white);
    padding: 20px;
    text-align: center;
}

.testimonial-content h3{
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--heading-color);
    text-transform: uppercase;
}

.testimonial-author{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
}

.testimonial-author img{
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
}

.testimonial-author h3{
    color: var(--font-white);
    font-size: 18px;
    margin-top: 10px;
}

.testimonial-author p{
    color: var(--font-white);
}

.testimonial-content::after{
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #fff;
    font-size: 0;
    line-height: 0;
    float: left;
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0px);
}

.map-container{
    background-color: var(--theme-color-3);
}

.location-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: var(--theme-color-1);
    padding: 2rem;
}

.location-contacts-info{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.contact-heading{
    font-size: 20px;
    color: var(--font-white);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.location-contacts-info ul li{
    margin-bottom: 15px;
}

.location-contacts-info ul li:last-child{
    margin-bottom: 0px;
}

.location-contacts-info ul li a{
    color: var(--font-white);
    display: flex;
    align-items: baseline;
}

.location-contacts-info ul li a i{
    margin-right: 15px;
}

.location-opening ul li{
    padding: 10px 0px;
    border-top: 1px solid rgb(255 255 255 / 18%);
}

.location-opening ul li p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--font-white);
}

.contact-container{
    width: 100%;
    background-image: url('../image/contact-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-container::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(0 0 0 / 60%);
    z-index: 10;
}

footer{
    background-color: #6b4a22;
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 1.75rem 0 1rem 0;
}

.contact-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 11;
}

.contact-input{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: rgb(255 255 255 / 10%);
    padding: 10px 15px;
    border: none;
    color: var(--font-white);
}

.contact-group .btn-main{
    width: 100%;
    max-width: 100%;
}

.footer-about{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-right: 5rem;
}

.footer-about img{
    width: 140px;
    margin-bottom: 15px;
}

.footer-about p{
    color: var(--font-white);
    margin-bottom: 6px;
}

.footer-about p:last-child{
    margin-top: 0.75rem;
}

.footer-quick-links{
    position: relative;
    width: 100%;
    display: inline-block;
}

.footer-heading{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-quick-links ul li{
    margin-bottom: 8px;
}

.footer-quick-links ul li:last-child{
    margin-bottom: 0px;
}

.footer-quick-links ul li a{
    color: var(--font-white);
}

.footer-follow ul li{
    display: inline-block;
    margin-right: 10px;
}

.footer-follow ul li a{
    color: var(--font-white);
}

/* 顶部栏语言切换：English / Русский（与微信/微博同一行） */
.topbar-social li.topbar-lang-item{
    margin-left: 14px;
}
.topbar-social li.topbar-lang-item a{
    width: auto;
    height: auto;
    display: inline;
    padding: 0;
    font-size: 13px;
    font-family: 'CenturyGothic-Regular', sans-serif;
    color: var(--font-white);
    transition: color .25s ease;
}
.topbar-social li.topbar-lang-item a:hover{
    color: var(--theme-color-1);
}
.navbar.fixed-top .topbar-social li.topbar-lang-item a{
    color: var(--font-black);
}
.navbar.fixed-top .topbar-social li.topbar-lang-item a:hover{
    color: var(--theme-color-1);
}

/* dark theme */

body.dark {
    background-color: var(--bg-black);
    color: var(--font-white);
}

.dark .one .banner-layer-description{
    color: var(--font-color);
}

.dark .one .read-more-link{
    color: var(--heading-color);
}

.dark .banner-book-appointment h3{
    color: var(--font-white);
}

.dark .about-container{
    background-color: var(--bg-black);
    padding-bottom: 0;
}

.dark .about-content-wrapper h3{
    color: var(--font-white);
}

.dark .funfactor-content p{
    color: var(--font-white);
}

.dark .service-layer{
    background-color: transparent;
}

.dark .sercice-list-item p{
    color: var(--font-color);
}

.dark .barbers-container{
    background-color: var(--bg-black);
}

.dark .section-heading{
    color: var(--font-white);
}

.dark .section-description{
    color: var(--font-white);
}

.dark .barber-designation{
    color: var(--font-color);
}

.dark .barber-description{
    color: var(--font-color);
}

.dark .barber-social li a{
    color: var(--font-color);
}

.dark .cares-container{
    background-color: var(--bg-black);
}

.dark .care-content p{
    color: var(--font-color);
}

.dark .testimonial-content p{
    color: var(--font-color);
}

.dark .map-container{
    background-color: var(--bg-black);
}

