* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'jost', sans-serif;
    background-color: #f7f7f7
}
a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: background 0.3s;
}
.btn.dt_btn {
    padding: 16px 36px;
    background: #cf94ff;
    color: #fff;
}
.btn.dt_btn:hover {
    background: #8d4bba;
}
.btn.dt_btn:focus {
    background: #8d4bba;
}
.btn.lt_btn {
    padding: 16px 36px;
    background: #000;
    color: #fff;
}
.btn.lt_btn:hover {
    background: #8d4bba;
}
.btn.lt_btn:focus {
    background: #8d4bba;
}




  
header {
    position: relative;
    vertical-align: middle;
    font-family: "Jost", sans-serif;
    padding: 0;
}
header .header_container {
    display: flex; 
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1410px; 
    margin: 0px auto;
}
header .header_container .header_left {
    display: flex; 
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
header.head_style_1 {
    background: #000;
}
header.head_style_1 a,
header.head_style_2 a {
    color: #fff;
}
header .header_container .header_left .header_logo a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    width: 140px;
}
header .header_container .header_left .header_logo img.logo {
    height: 25px;
}
header .header_container .header_left .header_navigation {
    margin-left: 50px;
    display: flex;
    justify-content: space-between;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item {
    display: block;
    position: relative;
    float: left;
    line-height: 100px;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item a {
    position: relative;
    display: block;
    padding: 0 32px;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: color 0.1s;
    zoom: 1;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu {
    position: absolute;
    min-width: 250px;
    margin: 0;
    padding: 20px 0;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    background-color: #141414;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
    list-style-type: none;
    animation: fadeInOut 0.3s cubic-bezier(0.27, 0.37, 0.84, 0.58);
}

header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu.show {
    opacity: 1;
    display: block;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu li {
    line-height: normal;
    padding: 15px 0;
    text-align: left;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu li.sub-menu-item a {
    text-align: left;
    padding: 0 32px;
    font-size: 15px;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu li.sub-menu-item {
    transition: background 0.3s;
}
header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu li.sub-menu-item:hover {
    background: rgba(255, 255, 255, 0.282);
}
@keyframes fadeInOut { 
    0% { 
        opacity: 0; 
        display: none; 
    } 
  
    50% { 
        opacity: 0.5; 
        display: block; 
    } 
  
    100% { 
        opacity: 1; 
        display: block; 
    } 
}

header .header_container .header_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
header .header_container .header_right .header_reservierung {
    height: 100%;
    background: #8d4bba;
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    transition: background 0.3s;
}
header .header_container .header_right .header_reservierung:hover {
    background: #6c2f9e;
}
header .header_container .header_right .header_reservierung a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.offcanvas {
    position: fixed;
    top: 0;
    right: -400px; 
    width: 400px;
    height: 100%;
    background-color: #000;
    color: #fff;
    transition: right 0.3s ease; 
    z-index: 9999;
    font-family: 'Jost', sans-serif;
}

.offcanvas.open {
    right: 0; 
}

.offcanvas .closeMenuButton {
    position: absolute;
    top: 20px;
    right: 60px;
    cursor: pointer;
    font-size: 60px;
    color: #fff;
    transition: color 0.3s;
}
.offcanvas .closeMenuButton:hover {
    color: #8d4bba;
}

.offcanvas .offcanvas-inner {
    padding: 0 60px;
    margin-top: 150px;
}
.offcanvas .offcanvas-inner span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    display: block;
}
.offcanvas .offcanvas-inner p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: .06em;
    color: #d1d0d0;
}
#openMenuButton img {
    pointer-events: none;
}
span.desktop {
    pointer-events: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
}
.menu-toggle .menu-toggle-icon {
    display: block;
    width: 24px;
    height: 14px;
    position: relative;
}   
.menu-toggle .menu-toggle-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 0px;
    transition: all 0.3s;
}
.menu-toggle .menu-toggle-icon span:nth-child(1) {
    top: 0;
}
.menu-toggle .menu-toggle-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.menu-toggle .menu-toggle-icon span:nth-child(3) {
    bottom: 0;
}
.menu-toggle.open .menu-toggle-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.menu-toggle.open .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .menu-toggle-icon span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.menu-item.dropdown > a {
    position: relative;
}
.menu-item.dropdown > a:after {
    content: url('../images/down-arrow.png'); 
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 35px;
    margin-left: 5px;
    display: inline-block;
    height: 16px;
    width: 16px;
    line-height: 0;
}

@media only screen and (min-width: 992px) {
    .menu-item.dropdown > a:after {
        content: url('../images/down-arrow.png'); 
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -8px;
        margin-left: 5px;
        display: inline-block;
        height: 16px;
        width: 16px;
        line-height: 0;
    }
    .menu-item.dropdown > a:hover:after {
        transform: rotate(-180deg); 
        transition: transform 0.3s ease; 
    }
}
@media (max-width: 1410px) { 
    header {
        padding: 0 50px;
    }
}

@media (max-width: 1200px) {
    header {
        padding: 0 0 0 35px
    }
    header .header_container .header_right .header_reservierung {
        padding: 0 35px;
    }
    header .header_container .header_left .header_navigation ul.menu li.menu-item a {
        padding: 0 20px;
    }
    header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu {
        min-width: 200px;
    }
    header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu li.sub-menu-item a {
        padding: 0 20px;
    }
    header .header_container .header_left .header_navigation {
        margin-left: 25px;
    }
}
@media (max-width: 992px) {
    .desktop {
        display: none;
    }
    header .header_container {
        min-height: 80px;
        height: 80px;
    }
    header .header_container .header_left {
        flex-grow: 3;
        justify-content: space-between;
    }
    header .header_container .header_right {
        flex-grow: 0;
    }
    header .header_container .header_left .menu-toggle {
        display: block;
        margin-right: 25px;
    }
    header .header_container .header_left ul.menu {
        display: none;
        animation: fadeInOut 0.3s cubic-bezier(0.27, 0.37, 0.84, 0.58);
    }
    header .header_container .header_left ul.menu.show {
        display: block;
        background: #000;
        width: 100%;
        position: absolute;
        left: 0;
        top: 80px;
        opacity: 1;
        z-index: 9999;
    }
    header .header_container .header_left ul.menu.show li.menu-item {
        display: block;
        border-bottom: 1px solid #333;
        float: none;
        line-height: 50px;
    }
    header .header_container .header_left ul.menu.show li.menu-item a {
        text-align: left;
        padding: 0 35px;
    }
    header .header_container .header_left .header_navigation ul.menu li.menu-item ul.sub-menu {
        position: relative;
        padding: 0 35px;
    }
}

@media (max-width: 576px) {
    header .header_container .header_right .header_reservierung {
        display: none
    }
}

header.head_style_2 {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
  }
  header.head_style_2 .header_container .header_left {
    flex-grow: 2;
  }
  header.head_style_2 .header_container .header_left .header_navigation  {
    width: 100%;
    align-items: center;
    margin-left: unset;
  }
  header.head_style_2 .header_navigation .menuLeft {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 50px;
    flex-grow: 1;
  }
  header.head_style_2 .header_navigation .menuRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 50px;
    flex-grow: 1;
  }
  header.head_style_2 .header_logo {
    display: block;
    margin: 0 auto; /* Logo'yu ortala */
    flex-grow: 1;
}
header.head_style_2 .header_right {
    display: none;
}
@media (max-width: 992px) {
    header.head_style_2 .header_logo {
        margin: 0 0;
        order: 1;
    }
    header.head_style_2 .header_navigation .menuLeft {
        padding: 0;
        order: 2;
    }
    header.head_style_2 .header_container .header_left ul.menu.show {
        top:79px;
    }
    header.head_style_2 .header_container .header_left .menu-toggle {
        order: 3;
    }
}
/* Sticky menü stilini belirle */
.menu_sticky {
    position: fixed;
    left:0;
    top:0;
    width:100%;
    transition: top .5s;  
    z-index: 99
}
.menu_hidden {
    top: -100px;
  }
   
.menu_fixed {
    top:0;
    z-index: 9999;
}

footer {
    position: relative;
    color: #fff;
    padding: 0 0;
    font-family: "Jost", sans-serif;
    background: #000000;
    z-index: 0;
    
}
footer:after {
    content:url('../images/hairstyle_bg_001-min.png');
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.6;
    filter:contrast(0.4);

}
footer .footer_container {
    padding: 100px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    letter-spacing: .06em;
    max-width: 1410px;
    margin: 0 auto;
}

footer .footer_container .unterDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 490px;
}
footer .footer_container .unterDiv span.unternehmenDiv {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .06em;
    margin: 10px 0;
    text-transform: uppercase;
}
footer .footer_container .unterDiv span {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .04em;
    margin-bottom: 20px;
}
footer .footer_container .unterDiv span.urheberrecht {
    margin-bottom: 0;
}
footer .footer_container .unterDiv a img.footer_logo {
    height: 40px;
}

footer .footer_container .kontaktDiv {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer .footer_container h2 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .06em;
    margin: 0 0 20px;
}
footer .footer_container .menuDiv h2 {
    text-align: left;
}
footer .footer_container .kontaktDiv h2 {
    text-align: right;
}
footer .footer_container ul li {
    list-style-type: none;
    padding: 0 0 5px
}
footer .footer_container .kontaktDiv ul li {
    text-align: right;
}
footer .footer_container .kontaktDiv p {
    font-size: 14px;
}
footer .footer_container ul li,
footer .footer_container a {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: .09em;
    transition: color 0.5s;
}

footer .footer_container a:hover {
    color: #fc7e7e;
}

footer .footer_bottom {
    display: flex; 
    justify-content: space-between;
    padding: 50px 0;
    /* background: #141414; */
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .06em;
    max-width: 1410px;
    margin: 0 auto;
}
footer .footer_bottom span {
    color: #fc7e7e;
    text-transform: uppercase;
}
footer .footer_bottom span.company_name {
    color: unset;
    text-transform: capitalize;
    font-weight: 300
}
footer .footer_bottom span.company_name a {
    color: inherit;
}
footer .footer_bottom div ul li {
    display: inline-block;
    margin: 0 10px;
}
footer .footer_bottom div ul li a {
    color: #fff;
    transition: color 0.5s;
}
footer .footer_bottom div ul li a:hover {
    color: #fc7e7e;
}
footer .footer_bottom div ul li:last-child {
    margin-right: 0;
}
@media (max-width: 1410px) {
    footer .footer_container {
        padding: 100px 50px;
    }
    footer .footer_bottom {
        padding: 50px 50px;
    }
}
@media (max-width: 1200px) {
    footer .footer_container {
        padding: 100px 35px 100px;
    }
    footer .footer_bottom {
        padding: 50px 35px;
    }
}
@media (max-width: 992px) {
    footer .footer_container {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 35px;
    }
    footer .footer_container .menuDiv {
        order: 2;
    }

    footer .footer_container .unterDiv {
        order: 1;
        align-items: flex-start;
    }
    footer .footer_container .kontaktDiv {
        order: 3;
        align-items: flex-start;
    }
    footer .footer_container h2 {
        text-align: left;
        margin-top: 30px;
    }
    footer .footer_bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    footer .footer_bottom {
        padding: 25px 35px;
        text-align: left;
    }
    footer .footer_bottom div:first-child {
        margin-bottom: 10px;
    }
    footer .footer_bottom div ul li {
        margin: 0 5px;
    }
    footer .footer_bottom div ul li:first-child {
        margin-left: 0;
    }
    footer .footer_bottom div ul li a {
        font-size: 12px;
    }
}



/* .carousel-item.active .text {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(-100%);
    text-align: left;
    padding: 50px;
    opacity: 1;
    animation: slideUp 1.5s ease forwards;
    background: #000;
    color: #fff;
    max-width: 630px;
    width: 100%;
    max-height: 350px;
    height:100%;
}
.carousel-item .text h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.carousel-item.active {
    opacity: 1;
    animation: slideDown 1s ease forwards;
    z-index: 1;
} */

body main {
    margin-top: 100px;
} 
@media (max-width: 992px) {
    body main {
        margin-top: 80px;
    }
}
@media (max-width: 768px) {
    body main {
        margin-top: 80px;
    }
}
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes slideUp {
    from {
      transform: translateY(100%); /* Başlangıçta sağ kenara konumlandırıyoruz */
      opacity: 0;
    }
    to {
      transform: translateY(0); /* Ekranın içine gelmesi için değeri 0 yapıyoruz */
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeInOut {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }

  }

.page_404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #131518;
    color: #fff;
    padding: 0 50px;
}
.page_404 h1.h1_404 {
    font-size: 200px;
    font-weight: 700;
    margin-bottom: 20px;
}
.page_404 h3.h2_404 {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 20px;
}
.page_404 p.p_404 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.page_404 a.link_404 {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #8d4bba;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: background 0.3s;
}
.page_404 a.link_404:hover {
    background: #6c2f9e;
}
.page_404 a.link_404:focus {
    background: #6c2f9e;
}
.no-post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    color: #000;
    padding: 100px 0;
}
.no-post h1.h1_none {
    font-size: 75px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1em;
}
.no-post p.p_none {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
@media (max-width: 1366px) {
    .page_404 {
        padding: 0 50px;
    }
    .page_404 h1.h1_404 {
        font-size: 100px;
    }
    .page_404 h3.h2_404 {
        font-size: 50px;
    }
    .no-post {
        padding: 50px 0;
    }
    .no-post h1.h1_none {
        font-size: 60px;
    }

}
@media (max-width: 1200px) {
    .page_404 {
        padding: 0 35px;
    }
}
@media (max-width: 992px) {
    .page_404 {
        padding: 0 50px;
    }
    .page_404 h1.h1_404 {
        font-size: 100px;
    }
    .page_404 h3.h2_404 {
        font-size: 50px;
    }
    .no-post h1.h1_none {
        font-size: 40px;
    }
}
@media (max-width: 768px) {
    .page_404 {
        padding: 0 35px;
    }
    .page_404 h1.h1_404 {
        font-size: 80px;
    }
    .page_404 h3.h2_404 {
        font-size: 40px;
    }
    .no-post h1.h1_none {
        font-size: 30px;
    }
}
@media (max-width: 576px) {
    .page_404 h1.h1_404 {
        font-size: 80px;
    }
    .page_404 h3.h2_404 {
        font-size: 30px;
    }
    .page_404 p.p_404 {
        font-size: 14px;
    }
    .page_404 a.link_404 {
        font-size: 14px;
    }
}

#wpadminbar #wp-admin-bar-hairart-theme-settings .ab-item {
    color: #fff;
    background-color: #0073aa;
}


.single_page {
    display: flex; 
    flex-direction: row;
    padding: 0;
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
}
.dt_category_page {
    display: flex; 
    flex-direction: column;
    padding: 0;
    max-width: 1410px;
    width: 100%;
    margin: 0 auto;
}

.single_page .page_content {
    flex-grow: 1;
    padding: 30px 50px 30px 0;
    width: 100%;
}
.single_page .page_content h1.page_content_title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.single_page .page_content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.single_page .page_content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.single_page .page_content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.single_page .page_content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.single_page .page_content h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.single_page .page_content p {
    margin-bottom: 20px;
    font-size: 18px;
}
.single_page .page_sidebar {
    flex-grow: 0;
    min-width: 300px;
    width: 300px;
    padding: 0 0;
    /* border-left: 1px solid #f7f7f7; */
    margin: 30px 0;
}
.single_page .page_sidebar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.single_page .post-thumbnail {
    margin-bottom: 20px;
    text-align: center;
}

.single_page .post-thumbnail img {
    max-width: 100%; /* Görselin maksimum genişliğini %100 olarak ayarlar */
    height: auto;   /* Görselin yüksekliğini otomatik olarak ayarlar */
}

.single_page blockquote {
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    width: 100%;
    margin: 0.25em 0;
    padding: 1.25em 40px 0.25em 48px;
    line-height: 1.45;
    position: relative;
    color: #383838;
    background:#f7f7f7;
}
 
.single_page blockquote:before {
    display: block;
    content: "\201C";
    font-size: 80px;
    position: absolute;
    left: 5px;
    top: -10px;
    color: #7a7a7a;
}
 
.single_page blockquote cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}
 
.single_page blockquote cite:before {
    content: "\2014 \2009";
}
.dtcategory.page_header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: #8d4bba url('/wp-content/uploads/2024/07/desen-01.png') no-repeat;
    background-position: right;
    background-size: auto;
    background-blend-mode: soft-light;
    color: #fff;
    text-align: center;
}
.dtcategory.page_header h1.page-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.dtcategory.page_header .archive-description {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}
.dt_category_page h1.page_content_title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.dt_category_page .site-category .category-posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 50px 0 50px 0;
}
.dt_category_page .site-category .category-posts article {
    display: flex;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
}
.dt_category_page .entry-thumbnail {
    overflow: hidden;
    max-height: 190px;
}
.dt_category_page img.attachment-beitrage_post_thumbnail.size-beitrage_post_thumbnail.wp-post-image {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
}
.dt_category_page img.attachment-beitrage_post_thumbnail.size-beitrage_post_thumbnail.wp-post-image:hover {
    transform: scale(1.1);
}
.dt_category_page .site-category .category-posts .entry-header h2.entry-title {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #000;
}
.dt_category_page .site-category .category-posts .entry-header h2.entry-title a {
    color: #000;
    font-weight: 500;
}
.dt_category_page .site-category .category-posts .entry-header h2.entry-title a:hover {
    color: #8d4bba;
}

.dt_category_page .site-category .category-posts .entry-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.dt_category_page .site-category .category-posts .entry-header,  
.dt_category_page .site-category .category-posts .entry-container .entry-content {  
    padding: 0 20px;
}
.dt_category_page .site-category .category-posts .entry-container .entry-content a.read-more { 
    color: #8d4bba;
    text-decoration: underline;
    padding-top: 5px;
    display: block;
    font-size: 14px;
 }
 .dt_category_page .site-category .category-posts .entry-container .entry-content a.read-more:hover {
    color: #000;
    text-decoration: none;
 }
.dt_category_page .site-category .category-posts .entry-container .entry-content {  
    padding-bottom: 20px;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div {
    display: flex;
    justify-content: flex-start;
    font-size: .75em;
    padding: 20px 20px 20px 20px;
    border-top: 1px solid #f7f7f7
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span,
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span a { 
    color: #838383;
    font-weight: 400;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span:hover,
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span a:hover {
    color: #8d4bba;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span:after {
    content: '-';
    margin: 0 5px;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span:last-child:after {
    content: '';
    margin: 0;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span.edit-link a {
    color: #ff0000
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span.cat-links:before {
    content: '\f0c9';
    font-family: 'FontAwesome';
    margin: 0 5px 0 0;
    color: #838383;
    transition: all 0.2s ease-in-out;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span.posted-on:before {
    content: '\f017';
    font-family: 'FontAwesome';
    margin: 0 5px 0 0;
    color: #838383;
    transition: all 0.2s ease-in-out;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span.comments-link:before {
    content: '\f0e5';
    font-family: 'FontAwesome';
    margin: 0 5px 0 0;
    color: #838383;
    transition: all 0.2s ease-in-out;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span.edit-link:before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin: 0 5px 0 0;
    color: #838383;
    transition: all 0.2s ease-in-out;
}
.dt_category_page .site-category .category-posts .entry-container .entry-footer>div span:hover:before {
    color: #8d4bba;
}

@media (max-width: 1410px) {
    .single_page,
    .dt_category_page {
        padding: 0 50px;
    }
}
@media (max-width: 1200px) {
    .single_page,
    .dt_category_page {
        padding: 0 35px;
    }
    .dt_category_page .site-category .category-posts {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .single_page,
    .dt_category_page {
        padding: 0 35px;
    }
    .single_page .page_content {
        padding: 30px 0 30px 0;
    }
    .single_page .page_sidebar {
        display: none;
    }
    .dt_category_page .site-category .category-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .single_page,
    .dt_category_page {
        padding: 0 30px;
    }
    .dt_category_page .site-category .category-posts {
        grid-template-columns: repeat(1, 1fr);
    }
}

.comments-area {
    padding: 50px 0;
}
.comments-area h2.comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.comments-area .comment-list {
    padding: 0;
    list-style-type: none;
}
.comments-area .comment-list li {
    margin: 15px 0;
    padding: 20px 0 0 0;
}


.comments-area .comment-list li .comment-body .comment-author.vcard {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.comments-area .comment-list li .comment-body .avatar img {
    border-radius: 50%;
    border: 3px solid #8d4bba;
}
.comments-area .comment-list li .comment-body .comment-head {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.comments-area .comment-list li ol.children {
    padding: 0 0 0 30px;
    list-style-type: none;
}
.comments-area .comment-list li ol.children li.odd,
.comments-area .comment-list li ol.children li.even {
    padding: 20px 20px;
    border: 1px solid #f3f2f2;
    border-radius: 10px;
}

.comments-area .comment-list li .comment-body .comment-head .comment-head-left .comment-meta cite,
.comments-area .comment-list li .comment-body .comment-head .comment-head-left .comment-meta cite a,
.comments-area .comment-list li .comment-body .comment-head .comment-head-left .comment-meta span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-style: normal;
    text-transform: capitalize;
    letter-spacing: .02em;
}
.comments-area .comment-list li .comment-body .comment-head .comment-head-left .comment-datedata a {
    font-size: 12px;
    font-weight: 600;
    color: #312f33;
    letter-spacing: .02em;
    cursor: pointer;
}
.comments-area .comment-list li .comment-body .comment-head .comment-head-right .commentmetadata a {
    font-size: 12px;
    font-weight: 600;
    color: #312f33;
    letter-spacing: .02em;
    cursor: pointer;
}

.comments-area .comment-list li .comment-body .comment-text {
    font-size: 16px;
    font-weight: 400;
    padding-left: 63px;
}
.comments-area .comment-list li .comment-body .comment-text a {
    color: #8d4bba;
    font-weight: 600;
    cursor: pointer;
}
.comments-area .comment-list li .comment-body .reply {
    margin-top: 10px;
}
.comments-area .comment-list li .comment-body .reply i {
    font-size: 16px;
    font-weight: 500;
    color: #8d4bba;
    cursor: pointer;
    padding-right: 10px;
    transform: rotate(180deg);
}
.comments-area .comment-list li .comment-body .reply i:hover {
    color: #6c2f9e;
}
.comments-area .comment-list li .comment-body .reply a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
}
.comments-area .comment-list li .comment-body .reply:hover {
    color: #6c2f9e;
}
.comments-area .comment-respond {
    margin-top: 50px;
}
.comments-area .comment-respond h3.comment-reply-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.comments-area .comment-respond h3.comment-reply-title a {
    font-size: 16px;
    font-weight: 600;
    color: #8d4bba;
    cursor: pointer;
}
.comments-area .comment-respond h3.comment-reply-title small a#cancel-comment-reply-link {
    color: #da1919;
    font-size: 12px;
    border: 1px solid #da1919;
    padding: 5px 10px;
    transition: background 0.3s;
}
.comments-area .comment-respond h3.comment-reply-title small a#cancel-comment-reply-link:hover {
    color: #fff;
    background: #da1919;
}
.comments-area .comment-respond form {
    display: flex;
    flex-direction: column;
}
.comments-area .comment-respond form p {
    margin-bottom: 20px;
}
.comments-area .comment-respond form.comment-form .logged-in-as {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.comments-area .comment-respond form.comment-form .logged-in-as a {
    color: #8d4bba;
    cursor: pointer;
}
.comments-area .comment-respond form.comment-form .logged-in-as span.required-field-message {
    font-size: 14px;
    display: block;
}
.comments-area .comment-respond form.comment-form .comment-notes {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.comments-area .comment-respond form.comment-form .comment-notes span.required-field-message {
    font-size: 14px;
    display: block;
}
.comments-area .comment-respond form.comment-form .comment-form-comment {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.comments-area .comment-respond form.comment-form .comment-form-comment textarea {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    background: #f7f7f7;
}

.comments-area .comment-respond form.comment-form .form-submit .submit {
    padding: 16px 36px;
    background: #8d4bba;
    border: 1px solid #8d4bba;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: background 0.3s;
}
.comments-area .comment-respond form.comment-form .form-submit .submit:hover {
    background: #6c2f9e;
    border: 1px solid #6c2f9e;
}
.comments-area .comment-respond form.comment-form .form-submit .submit:focus {
    background: #6c2f9e;
    border: 1px solid #6c2f9e;
}
.comments-area .comment-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.comments-area .comment-navigation .nav-previous {
    font-size: 16px;
    font-weight: 400;
    color: #8d4bba;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.comments-area .comment-navigation .nav-previous:hover {
    color: #6c2f9e;
}
.comments-area .comment-navigation .nav-next {
    font-size: 16px;
    font-weight: 400;
    color: #8d4bba;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.comments-area .comment-navigation .nav-next:hover {
    color: #6c2f9e;
}
.comments-area .no-comments {
    padding: 50px 0;
}
.comments-area .no-comments h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.comments-area .no-comments p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}
.comments-area .no-comments a {
    font-size: 16px;
    font-weight: 400;
    color: #8d4bba;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.comments-area .no-comments a:hover {
    color: #6c2f9e;
}

@media (max-width: 992px) {
    .comments-area {
        padding: 50px 0;
    }
    .comments-area .comment-respond {
        margin-top: 50px;
    }
    .comments-area .comment-respond form .comment-form.comment-form-comment textarea {
        padding: 20px;
    }
    .comments-area .comment-navigation {
        margin-top: 50px;
    }
    .comments-area .no-comments {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .comments-area {
        padding: 50px 0;
    }
    .comments-area .comment-respond {
        margin-top: 50px;
    }
    .comments-area .comment-respond form.comment-form .comment-form-comment textarea {
        padding: 20px;
    }
    .comments-area .comment-navigation {
        margin-top: 50px;
    }
    .comments-area .no-comments {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .comments-area {
        padding: 50px 0;
    }
    .comments-area .comment-respond {
        margin-top: 50px;
    }
    .comments-area .comment-respond form .comment-form.comment-form-comment textarea {
        padding: 20px;
    }
    .comments-area .comment-navigation {
        margin-top: 50px;
    }
    .comments-area .no-comments {
        padding: 50px 0;
    }
}



.hairArt-comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: space-between;
}

.hairArt-comment-form p {
    margin-bottom: 1em;
}

.hairArt-comment-form label {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5em;
}

.hairArt-comment-form input {
    width: 100%;
    padding: 0.5em;
    margin-top: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.hairArt-comment-form-comment {
    margin-bottom: 1em;
}

.hairArt-comment-form-comment label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 0.5em;
}

.hairArt-comment-form-comment textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 150px;
    box-sizing: border-box;
}

.hairArt-comment-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
}

.hairArt-comment-form input[type="submit"]:hover {
    background-color: #005177;
}

.hairArt-comment-notes,
.hairArt-form-allowed-tags {
    margin-bottom: 1em;
    font-size: 0.875em;
    color: #666;
}

.widget-area .widget h2.widget-title {
    padding: 15px;
    margin: 0 !important;
    background: #8d4bba;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
}
.widget-area .widget h2.widget-title i {
    padding-right: 7px;
}
.widget li a {
    display: flex;
    align-items: center;
    background: #fff;
    color: #181818;
    border-top: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 15px 20px;
    transition: all .3s;
    border-left: 1px solid #f7f7f7;
    border-right: 1px solid #f7f7f7;
}
.widget li a:hover {
    color: #8d4bba;
}
.widget .calendar_wrap {
    border-left: 1px solid #f7f7f7;
    border-right: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
}
.widget .calendar_wrap table.wp-calendar-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.widget .calendar_wrap table.wp-calendar-table caption {
    font-size: 15px;
    font-weight: 600;
    margin: 15px;
    text-align: left;
}
.widget .calendar_wrap table.wp-calendar-table thead th {
    font-size: 16px;
    font-weight: 500;
    background: #e9e9e9;
    color: #000;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
}
.widget .calendar_wrap table.wp-calendar-table tbody td {
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a {
    color: #000;
    font-weight: 500;
    cursor: pointer;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a:hover {
    color: #8d4bba;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts {
    color: #8d4bba;
    font-weight: 500;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts:hover {
    color: #6c2f9e;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #000;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts:hover span {
    color: #8d4bba;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts span {
    color: #8d4bba;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts:hover span {
    color: #6c2f9e;
}
.widget .calendar_wrap table.wp-calendar-table tbody td a.has-posts span {
    color: #8d4bba;
}
.widget .calendar_wrap nav.wp-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}
.widget .calendar_wrap nav.wp-calendar-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
}
.widget .calendar_wrap nav.wp-calendar-nav a:hover,
.widget .calendar_wrap nav.wp-calendar-nav a:focus {
    color: #8d4bba;
}
.widget .calendar_wrap nav.wp-calendar-nav a.disabled {
    color: #ccc;
    cursor: not-allowed;
}
.widget .calendar_wrap nav.wp-calendar-nav a.disabled:hover,
.widget .calendar_wrap nav.wp-calendar-nav a.disabled:focus {
    color: #ccc;
}

#scrollUp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #6c2f9e; /* İstediğiniz rengi kullanabilirsiniz */
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
    display: none;
}

#scrollUp:hover {
    background-color: #8d4bba;
}
#scrollUp i {
    color: #fff;
}


.pagination {
    text-align: center;
    margin: 0 0 50px;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    color: #6c2f9e;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.pagination .page-numbers:hover {
    background-color: #8d4bba;
    color: #fff;
}

.pagination .current {
    font-weight: bold;
    background-color: #6c2f9e;
    color: #fff;
    border-color: #6c2f9e;
}

.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    font-weight: bold;
}

.pagination .prev.page-numbers:hover,
.pagination .next.page-numbers:hover {
    background-color: #8d4bba;
    border-color: #8d4bba;
}
