:root {
    --color-primary: #6a62fe;
    --color-text: #495c77;
    --color-border: #e2e9ee;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
.site-header {
    font-family: var(--font-primary);
}

.top-bar {
    background-color: #6a62fe;
    color: #fff;
    padding: 10px 0;
}

.deals-notification {
    display: flex;
    justify-content: center;
    align-items: center;
}

.save-now-btn {
    background-color: #000;
    color: #fff;
    padding: 5px 15px;
    margin-left: 15px;
    text-decoration: none;
    border-radius: 3px;
}

.main-header {
    padding: 20px 0;
    background-color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-actions {
    display: flex;
    align-items: center;
}

.contact-link, .login-link {
    margin-right: 15px;
    text-decoration: none;
    color: #495c77;
}

.language-selector select {
    border: none;
    background-color: transparent;
    color: #495c77;
}

.header-phone a {
    color: #495c77;
    text-decoration: none;
    font-weight: bold;
}

.main-navigation .main-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation .main-menu ul li {
    margin-right: 1rem;
}

.main-navigation .main-menu ul li a {
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 15px;
    font-weight: 500;
    color: #0b0c1b;
    opacity: .7;
    transition: all .15s ease;
}
.main-navigation .main-menu ul li a:hover {
    opacity: 1;
}
.main-menu ul li a {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.main-menu ul li.current-menu-item > a,
.main-menu ul li.active > a {
    font-weight: bold;
}

.main-menu ul li.current-menu-item > a::after,
.main-menu ul li.active > a::after {
    width: 100%;
}

/* Hover efekti */
.main-menu ul li:hover > a::after {
    width: 100%;
}

/* Anasayfa bağlantısı için özel stil */
body:not(.home) .main-menu ul li.menu-item-home > a {
    font-weight: normal;
}

body:not(.home) .main-menu ul li.menu-item-home > a::after {
    width: 0;
}
.top-bar {
    background-color: #6a62fe !important;
}
@media (max-width: 767.98px) {
    #search-top-hd {
        display:none!important;
    }
}
@media (max-width: 767.98px) {
#site-navigation {
   display:none!important;
}
}
@media (max-width: 767.98px) {
    .top-bar {
        font-size: 0.8rem;
    }
    
    .top-bar .btn-sm {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .custom-logo {
        max-height: 40px;
        width: auto;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    .navbar-toggler i{
     font-size: xx-large;
    }
    
    #mobile-menu {
        background-color: #f8f9fa;
        padding: 1rem 0;
    }
    
    #mobile-menu .mobile-menu ul {
        padding-left: 0;
    }
    
    #mobile-menu .mobile-menu ul li {
        border-bottom: 1px solid #e9ecef;
    }
    
    #mobile-menu .mobile-menu ul li a {
        display: block;
        padding: 0.5rem 0;
        color: #495c77;
        text-decoration: none;
    }
}
.phone-number {
    font-size: 14px;
    font-weight: 600;
}

.btn-dark {
    background-color: #000;
    border-color: #000;
}
.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 15px;
    color: #495c77;
    text-decoration: none;
}

.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.primary-menu li:hover > .sub-menu {
    display: block;
}


@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .header-right {
        margin-top: 15px;
        align-items: center;
    }

    .primary-menu {
        flex-direction: column;
    }

    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
    }
}

.site-content {
    padding: 0;
}

/* Blog Post Styles */
.blog-post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.blog-post:last-child {
    border-bottom: none;
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    border-radius: 5px;
}

.entry-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.entry-title a {
    color: var(--color-primary);
    text-decoration: none;
}

.entry-title a:hover {
    color: darken(var(--color-primary), 10%);
}

.entry-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.entry-meta > span {
    margin-right: 10px;
}

.entry-content {
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: darken(var(--color-primary), 10%);
}

.entry-footer {
    font-size: 14px;
    color: #6c757d;
}

/* Sidebar Styles */
.widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--color-primary);
}

/* Pagination Styles */
.posts-navigation {
    margin-top: 40px;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.nav-previous a,
.nav-next a {
    padding: 10px 15px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    background-color: darken(var(--color-primary), 10%);
}
.error-404 {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.ascii-art pre {
    line-height: 1.2;
    font-size: 0.6rem;
    white-space: pre;
    font-family: monospace;
    margin: 0;
}

@media (max-width: 768px) {
    .ascii-art pre {
        font-size: 0.4rem;
    }
}

@media (max-height: 700px) {
    .error-404 .h4 {
        font-size: 2rem;
    }
    .error-404 p {
        font-size: 1.2rem;
    }
    .error-404 .btn-sm {
        font-size: 1.2rem;
        padding: 0.2rem 0.4rem;
    }
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.error-message {
    font-size: 24px;
    color: var(--color-text);
    margin-top: 0;
}

.error-description {
    font-size: 18px;
    color: var(--color-text);
}

.error-image {
    margin: 30px 0;
}

.error-404 .btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration-line: none;
}

.error-404 .btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
    text-decoration-line: none;
}
.error-tip {
    font-weight: bold;
    margin-top: 30px;
}

.error-links {
    list-style-type: none;
    padding: 0;
}

.error-links li {
    display: inline-block;
    margin: 0 10px;
}

.error-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

.error-links a:hover {
    text-decoration: underline;
}

.error-joke {
    font-style: italic;
    margin-top: 30px;
    color: var(--color-text);
}
/* Archive Page Styles */
.page-header {
    background-color: var(--color-primary);
    color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.archive-description {
    font-size: 1rem;
    opacity: 0.8;
}

.card {
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.entry-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.entry-summary {
    font-size: 0.9rem;
}

.cat-links {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-links a {
    color: var(--color-primary);
}

.posts-navigation {
    margin-top: 2rem;
}

@media (max-width: 767px) {
    .card-img-top {
        height: 150px;
    }
}
/* Comments Styles */
.comments-area {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.comments-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 5px;
}

.comment-meta {
    margin-bottom: 0.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
}

.comment-author .avatar {
    margin-right: 10px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: bold;
    color: var(--color-primary);
}

.comment-metadata {
    font-size: 0.8rem;
    color: #6c757d;
}

.comment-content {
    margin-top: 0.5rem;
}

.reply {
    margin-top: 0.5rem;
}

.comment-reply-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 3px;
}

.comment-form textarea {
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

.comment-notes {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.required {
    color: #dc3545;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: darken(var(--color-primary), 10%);
    border-color: darken(var(--color-primary), 10%);
}
/* Footer Styles */
.site-footer {
    background-color: #000;
    color: #fff;
    padding-top: 50px;
}

.site-footer h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer ul li a {
    color: #6c757d;
    text-decoration: none;
}

.site-footer ul li a:hover {
    color: #fff;
}

.footer-middle {
    background-color: #6a62fe;
    padding: 30px 0;
    margin: 40px 0;
}

.newsletter h3 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter p {
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-logo {
    max-width: 150px;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links li a {
    color: #6c757d;
    text-decoration: none;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}


.social-icons a {
    color: #fff;
    font-size: 21px;
}

@media (max-width: 768px) {
    .footer-links, .social-icons {
        justify-content: center;
    }
    .social-icons {
        margin-top: 20px;
    }
}
.footer-newsletter {
    padding: 30px 40px;
    background-color: #2c2891;
    background-image: url(https://www.dchost.com/assets/images/templates/footer/shape.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 12px;
    text-align: left !important;
}
.footer-newsletter .para-2 {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: #fff;
    opacity: .6;
}
.header-actions a{
    text-decoration-line: none;
    font-size: 1rem;
    font-weight: 500;
}
#language-select {
    font-size: 1rem;
    font-weight: 500;
}
.latest-posts .card-img-top {
    height: 200px;
    object-fit: cover;
}
.left-big-bg {
    height: 400px;
    object-fit: cover;
}

.latest-posts .col-md-6 .card-img-top {
    height: 200px;
}

.category-section .card-img-top {
    height: 250px;
    object-fit: cover;
}

.list-group-item img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.badge {
    font-size: 0.8rem;
}
.latest-posts .badge  {
    max-width:80px;
    overflow:hidden;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.category-page .card-img-top {
    height: 250px!important;
    object-fit: cover;
}
.latest-posts .col-12 .card-img-top {
    height: 400px;
}

.card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
.latest-big {
    margin-bottom:30px;
}
}
.view-all-link {
    transition: all 0.3s ease;
    text-decoration-line: none;
}

.view-all-link:hover {
    padding-right: 1.5rem;
    text-decoration-line: none;
}

.view-all-link .bi-arrow-right {
    transition: transform 0.3s ease;
}

.view-all-link:hover .bi-arrow-right {
    transform: translateX(5px);
}
.luxury-post {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-header {
    padding: 4rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.entry-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.entry-header .container {
    position: relative;
    z-index: 2;
}

.entry-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.category-badge {
    background-color: var(--color-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-image {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-image-container {
    position: relative;
    overflow: hidden;
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-position: center;
}
@media (min-width: 767.99px) {
.featured-image-container img {
    object-fit: cover!important;
}
}
@media (max-width: 767.98px) {
.featured-image-container img {
    object-fit: fill!important;
}
}
.luxury-post {
    font-size: 1.1rem;
    line-height: 1.8;
}

.ai-summary {
    border-left: 4px solid var(--color-primary);
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.social-share {
    transition: all 0.3s ease;
}

.social-share:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-share .btn {
    flex: 1;
    min-width: 120px;
}

.nav-links a {
    transition: all 0.3s ease;
}

.nav-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
    background-color: darken(var(--color-primary), 10%);
    color:unset!important;
}
.nav-links .btn-outline:hover {
    background-color: darken(var(--color-primary), 10%);
}
.related-posts .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-posts .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-posts .card-title {
    font-size: 1.1rem;
    line-height: 1.3;
}

.related-posts .card-text {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .featured-image-container {
        height: 40vh;
    }

    .related-posts .col-md-6 {
        margin-bottom: 20px;
    }
}

.z-index-1 {
    z-index: 1;
}
span[data-bs-toggle="tooltip"] {
    border-bottom: 1px dotted #000;
    cursor: help;
}
table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-top: 20px;
    margin-bottom:20px;
}
table th {
    border: 1px solid #ddd;
    padding: 8px;
    background-color:var(--color-primary);
    color:#fff;
}
table td {
    border: 1px solid #ddd;
    padding: 8px;
}
table tr {
    border: 1px solid #ddd;
    padding: 8px;
}
    .archive-page .bg-gradient-dark {
        background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 100%);
    }
    .archive-page .card {
        transition: transform 0.3s ease-in-out;
    }
    .archive-page .card:hover {
        transform: translateY(-5px);
    }
    .archive-page .category-border-title {
       position: relative;
       margin-bottom: 20px;
       float: left;
       width: 100%;
       clear: both;
    }
    .archive-page .category-border-title .page-title {
       display: inline-block;
       text-transform: none;
       background: var(--color-primary);
       border-radius:2px 2px 0 0;
    }
    .archive-page .category-border-title:after {
       background: var(--color-primary);
       position: absolute;
       content: "";
       height: 4px;
       width: 100%;
       bottom: -2px;
       left: 0;
    } 
    .archive-page .category-top-padding{
      padding-left:calc(var(--bs-gutter-x) * .5);
      padding-right:calc(var(--bs-gutter-x) * .5);
    }
    .archive-page .category-post-link {
      color: inherit;
      text-decoration: none;
    }
    .archive-page .category-post-link:hover {
      text-decoration: underline;
    }
    .archive-page .text-truncate {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .pagination .page-link {
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.search-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.search-container.full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 150px;
}
.full-screen .search-form {
    width: 80%;
    max-width: 800px;
    margin-bottom: 1rem;
}
.full-screen .search-field {
    font-size: 2rem;
    padding: 1rem;
}
#search-results {
    max-height: 400px;
    overflow-y: auto;
    width: 80%;
    max-width: 800px;
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}
.full-screen #search-results {
    margin-top: 100px!important;
}
.dropdown-item {
    padding: 0.5rem 1rem;
    text-decoration: none;
}
.dropdown-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}
@media (max-width: 767px) {
    .search-container {
        margin-top: 1rem;
    }
}

.main-menu .menu-item {
    position: relative;
}
.main-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 1000;
    min-width: 200px;
}
.main-menu .menu-item:hover > .sub-menu {
    display: block;
}
.main-menu .sub-menu .menu-item {
    display: block;
}
.main-menu .sub-menu a {
    padding: 10px 15px;
    display: block;
    color: #333;
    text-decoration: none;
}
.main-menu .sub-menu a:hover {
    background-color: #f8f9fa;
}