﻿/*  typography */
body {
    line-height: 1.7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #696c6d;
    font-size: 16px;
}

p, .paragraph {
    color: #696c6d;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #1c1d1f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 45px;
}

h2, .h2 {
    font-size: 36px;
}

h3, .h3 {
    font-size: 28px;
    margin-bottom: 0.5rem;
}

h4, .h4 {
    font-size: 22px;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 14px;
}

/* Button style */
.btn {
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: capitalize;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    display: inline-block;
}

.btn:hover, .btn:active, .btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn-primary {
    background: #ce8460;
    color: #fff;
    border-color: #ce8460;
}

.btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary.active {
    background: #ce8460 !important;
    border-color: #ce8460 !important;
}

.btn-outline-primary {
    background: transparent;
    color: #696c6d;
    border-color: #ce8460;
}

.btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary.active {
    background: #ce8460 !important;
    border-color: #ce8460 !important;
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #696c6d;
    border-color: #ddd;
}

.btn-outline-light:active, .btn-outline-light:hover, .btn-outline-light.focus, .btn-outline-light.active {
    background: #f0f0f0 !important;
    border-color: #ddd !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #daa287;
    color: #fff;
}

::selection {
    background: #daa287;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

/* Light mode anchor colors */
a {
    color: #1c1d1f;
}

a:hover {
    color: #ce8460;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #ce8460;
}

.slick-slide {
    outline: 0;
}

.aside-padding{
    padding-left: 1.5rem !important;
    padding-right:1.5rem !important;
}

@media screen and (min-width: 1216px) {
    .container:not(.is-max-desktop) {
        max-width: 1140px;
    }
}

@media (max-width: 1023px) {
    .container {
        max-width: 765px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .aside-padding {
        padding-left: 0.5rem !important;
        padding-right:0.5rem !important;
    }
    
    .column.is-8-desktop.aside-padding {
        margin: 15px;
    }
    
    .columns {
        margin-left: 0;
        margin-right: 0;
    }
}

.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.column {
    padding: 15px;
}

.columns {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -15px;
}

.columns:last-child {
    margin-bottom: -15px;
}

.section {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.section-sm {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ddd !important;
}

/* overlay */
.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #ce8460 !important;
}

.text-primary {
    color: #ce8460 !important;
}

.text-color {
    color: #696c6d;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.zindex-1 {
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded-lg, .post-slider {
    border-radius: 10px !important;
}

.border-default {
    border-color: #ddd !important;
}

.input {
    background-color: transparent;
    box-shadow: none !important;
    height: calc(1.5em + 0.75rem + 2px);
}

.input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #ce8460;
}

.input::-moz-placeholder {
    font-size: 80%;
}

.input::placeholder {
    font-size: 80%;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline .list-inline-item {
    display: inline-block;
}

.list-inline .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.w-100 {
    width: 100%;
}

.bg-white {
    background-color: #fff;
}

.is-roundless {
    border-radius: 0;
}

[data-toggle=collapse] .fa {
    pointer-events: none;
}

[data-toggle=collapse][aria-expanded=true] .fa-plus::before {
    content: "\f068";
}

.is-borderless {
    border: 0 !important;
}

.is-sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-default {
    border-color: #ddd !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-right {
    border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
    border-left: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-right-0 {
    border-right: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-left-0 {
    border-left: 0 !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #343a40 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-muted {
    border-color: #404751 !important;
}

.h-100 {
    height: 100%;
}

.rounded {
    border-radius: 0.25rem !important;
}

.no-pointer {
    pointer-events: none;
}

.navbar-item {
    margin: 0;
    padding: 0.5rem 0.6rem;
    font-weight: bold;
}

@media (max-width: 1023px) {
    .navbar-item {
        text-align: center;
    }
}

.navbar-item .navbar-link {
    text-transform: capitalize;
    color: #1c1d1f;
}

.navbar-item .navbar-link:active, .navbar-item .navbar-link:hover {
    color: #ce8460 !important;
    background-color: transparent !important;
}

.navbar-item .navbar-link::after {
    display: none;
}

.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link, .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link {
    color: #ce8460 !important;
    background-color: transparent !important;
}

.navbar-link:not(.is-arrowless) {
    padding-right: 0.75rem !important;
}

.navbar {
    padding: 12px 15px;
}

@media (max-width: 1023px) {
    .navbar {
        padding: 12px 0;
    }
}

.navbar .has-dropdown {
    padding: 0.5rem 0.6rem;
}

.navbar .has-dropdown:hover .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
}

.navbar .has-dropdown .navbar-dropdown {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    border: 0;
    top: 50px;
    left: 0px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    background: #fff;
    border-radius: 10px;
}

@media (max-width: 1023px) {
    .navbar .has-dropdown .navbar-dropdown {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transform-origin: unset;
    }
}

.navbar .has-dropdown .navbar-item {
    position: relative;
    color: #1c1d1f;
    transition: 0.2s ease;
    font-size: 14px;
    padding: 6px 25px;
}

.navbar .has-dropdown .navbar-item:not(:last-child) {
    padding-bottom: 10px;
}

.navbar .has-dropdown .navbar-item:hover {
    color: #ce8460 !important;
    background: transparent;
}

.navbar-burger:hover,
.navbar-burger {
    color: #fff !important;
    height: 2.8rem;
    width: 2.8rem;
    border: 0;
    border-radius: 3px;
    float: right;
    background-color: #ce8460;
    margin-top: 4px;
}

/* search */
.search-btn {
    border: 0;
    background: transparent;
}

.search-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 2;
    visibility: hidden;
    transition: 0.2s ease;
    opacity: 0;
}

.search-wrapper.open {
    visibility: visible;
    opacity: 1;
}

.search-box {
    height: 100%;
    width: 100%;
    border: 0;
    background: #fff;
    font-size: 20px;
    padding: 0;
}

.search-box:focus {
    box-shadow: none !important;
    outline: 0;
}

.search-close {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    page-break-after: 10px;
    font-size: 20px;
}

.post-title {
    color: #1c1d1f;
}

.post-title:hover {
    color: #ce8460;
}

.post-meta li {
    margin-right: 10px;
    font-size: 90%;
}

.post-meta a, .post-meta span {
    color: #696c6d;
    border-bottom: 1px dotted #ddd;
}

.post-meta a:hover {
    color: #ce8460;
}

.recent-thumb-alt {
    font-size: 0;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: #ce8460;
    text-align: center;
}

.recent-thumb-alt::first-letter {
    font-size: 40px;
    line-height: 60px;
    color: #fff;
}

.social-icons {
    margin-bottom: 0;
}

.social-icons a {
    display: block;
    color: #888c8e;
    padding: 5px;
    font-size: 14px;
}

.social-icons a:hover {
    color: #ce8460;
}

.social-icons-rounded {
    margin-bottom: 0;
}

.social-icons-rounded a {
    display: block;
    color: #888c8e;
    font-size: 14px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.social-icons-rounded a:hover {
    color: #ce8460;
    border-color: #ce8460;
}

.post-slider {
    overflow: hidden;
    margin-bottom: 20px;
}

.post-slider img {
    border-radius: inherit;
}

.post-slider:hover .prevArrow {
    left: 10px;
}

.post-slider:hover .nextArrow {
    right: 10px;
}

.slider-sm .slick-arrow {
    height: 35px;
    width: 35px;
    line-height: 35px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: rgba(206, 132, 96, 0.5);
    color: #fff;
    border: 0;
}

@media (max-width: 575px) {
    .slick-arrow {
        display: none;
    }
}

.slick-arrow:focus {
    outline: 0;
}

.slick-arrow:hover {
    background: #ce8460;
}

.prevArrow {
    left: -60px;
}

.nextArrow {
    right: -60px;
}

.pagination {
    margin-top: 50px;
}

.pagination .page-item .page-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    text-align: center;
    padding: 0;
    margin-right: 10px;
    border: 0;
    color: #696c6d;
}

.pagination .page-item .page-link:hover {
    background: #ce8460;
    color: #fff;
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    border-radius: 50%;
}

.pagination .page-item.active .page-link {
    background: #ce8460;
    color: #fff;
}

.content * {
    word-break: break-word;
    overflow-wrap: break-word;
}

.content img {
    max-width: 100%;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-weight: 500;
}

.content h4 {
    font-size: 22px;
}

.content strong {
    font-weight: 600;
}

.content a {
    color: #696c6d;
    border-bottom: 1px dotted #ddd;
}

.content a:hover {
    color: #ce8460;
}

.content ol,
.content ul {
    padding-left: 20px;
    margin-left: 0 !important;
}

.content ol li,
.content ul li {
    margin-bottom: 10px;
}

.content ul {
    padding-left: 0;
    margin-bottom: 20px;
    list-style-type: none;
}

.content ul li {
    padding-left: 20px;
    position: relative;
}

.content ul li::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: #ce8460;
    left: 3px;
    top: 8px;
}

.content table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
}

.content table td,
.content table th {
    padding: 0.75rem;
    vertical-align: top;
    margin-bottom: 0;
}

.content tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.content th {
    font-weight: 500;
}

.content thead {
    background: #f0f0f0;
    margin-bottom: 0;
}

.content thead tr {
    border-bottom: 1px solid #ddd;
}

.content tbody {
    background: #fdfdfd;
    margin-bottom: 0;
}

.content .notices {
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.content .notices p {
    padding: 10px;
    margin-bottom: 0;
}

.content .notices p::before {
    position: absolute;
    top: 2px;
    color: #fff;
    font-family: "themify";
    font-weight: 900;
    content: "\e717";
    left: 10px;
}

.content .notices.note p {
    border-top: 30px solid #6ab0de;
    background: #f0f0f0;
}

.content .notices.note p::after {
    content: "Note";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content .notices.tip p {
    border-top: 30px solid #78C578;
    background: #f0f0f0;
}

.content .notices.tip p::after {
    content: "Tip";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content .notices.info p {
    border-top: 30px solid #F0B37E;
    background: #f0f0f0;
}

.content .notices.info p::after {
    content: "Info";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content .notices.warning p {
    border-top: 30px solid #E06F6C;
    background: #f0f0f0;
}

.content .notices.warning p::after {
    content: "Warning";
    position: absolute;
    top: 2px;
    color: #fff;
    left: 2rem;
}

.content blockquote {
    font-size: 20px !important;
    color: #696c6d;
    padding: 20px 40px;
    border-left: 2px solid #ce8460;
    margin: 40px 0;
    font-weight: bold;
    background: #f0f0f0;
}

.content blockquote p {
    margin-bottom: 0 !important;
}

.content pre {
    display: block;
    padding: 9.5px;
    margin: 10px 0px 10px;
    white-space: pre-wrap;
}

.content code {
    margin-bottom: 0 !important;
    font-size: 100%;
}

.code-tabs {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
}

.code-tabs .tab-pane {
    display: none;
}

.code-tabs .tab-pane.active {
    display: block;
}

.code-tabs .nav-tabs {
    list-style: none;
    margin: 0 !important;
}

.code-tabs .nav-tabs li {
    padding: 0 !important;
    margin: 0 !important;
}

.code-tabs .nav-tabs li::before {
    display: none;
}

.code-tabs .nav-tabs li a {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.code-tabs .nav-tabs li a:focus {
    border-color: #ce8460;
}

.code-tabs .nav-tabs li.active a {
    color: #fff;
    background-color: #ce8460;
    border-color: #ce8460;
}

.code-tabs .tab-content {
    padding: 20px 15px;
    border: 1px solid #ddd;
}

.title-bordered {
    border: 1px solid #ddd;
    border-radius: 40px;
    padding: 2px;
}

.title-bordered h1,
.title-bordered h2,
.title-bordered h3,
.title-bordered h4,
.title-bordered h5,
.title-bordered h6 {
    background: #f0f0f0;
    padding: 10px 25px;
    margin-bottom: 0;
    border-radius: inherit;
    display: inline-block;
}

.field {
    margin-bottom: 20px !important;
}

.field label {
    font-size: 13px;
    color: #1c1d1f;
}

.field .input {
    border-color: #ddd;
}

.field .input:focus {
    outline: 0;
    box-shadow: none;
    border-color: #ce8460;
}

.field textarea.input {
    height: 120px;
}

.widget {
    background: #fff;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.widget-title {
    position: relative;
    margin-bottom: 15px;
}

.widget-title span {
    background: #fff;
    position: relative;
    padding-right: 5px;
    z-index: 1;
}

.widget-title::before {
    position: absolute;
    content: "";
    right: 0;
    height: 1px;
    width: 100%;
    background: #ddd;
    top: 50%;
}

.widget-search {
    position: relative;
}

.widget-search input {
    border: 0;
    border-bottom: 1px dotted #ddd;
    width: 100%;
    height: 40px;
}

.widget-search input:focus {
    outline: 0;
}

.widget-search input::-moz-placeholder {
    font-size: 90%;
}

.widget-search input::placeholder {
    font-size: 90%;
}

.widget-search button {
    height: 30px;
    width: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 0;
    background: #f0f0f0;
    color: #1c1d1f;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 5px;
    border: 0;
    font-size: 12px;
}

.widget-list li {
    padding: 5px 0;
}

.widget-list li:not(:last-child) {
    border-bottom: 1px dotted #ddd;
}

.widget-list li a {
    color: #1c1d1f;
}

.widget-list li a:hover {
    color: #ce8460;
}

.widget-list-inline li {
    margin-bottom: 10px;
}

.widget-list-inline li a {
    padding: 2px 10px;
    border: 1px solid #ddd;
    border-radius: 40px;
    display: block;
    color: #696c6d;
}

.widget-list-inline li a:hover {
    border-color: #ce8460;
    background: #ce8460;
    color: #fff;
}

.widget-post {
    padding: 15px 0 !important;
}

.widget-post img {
    height: 60px;
    width: 60px;
    max-width: 60px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-list a {
    display: block;
    color: #888c8e;
    padding: 5px 0;
}

.footer-list a:hover {
    color: #ce8460;
}

.logo-column a.logo{
    font-size:1.8rem;
    font-weight:bold;
}

.subscription .input {
    background-color: #f0f0f0;
    border: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}

.subscription .email-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 18px;
    color: #ce8460;
    z-index: 2;
}

.quote {
    background-color: #f0f0f0;
    display: flex;
    padding: 20px;
}

.quote i {
    font-size: 24px;
    color: #ce8460;
    margin-right: 10px;
}

.quote p {
    font-style: italic;
}

.quote-by {
    color: #ce8460;
}

.scroll-top {
    border-top: 1px solid #ddd;
    position: relative;
    margin: 60px 0 40px;
}

.scroll-top a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #ce8460;
    color: #fff;
    text-align: center;
    line-height: 50px;
    display: block;
}

.job-description h1,
.job-description h1 strong,
.job-description h2,
.job-description h2 strong {
    color: #f08080 !important;
    font-size: 18px; /* .h5 */
    margin-bottom: .5rem !important; /* .mb-2 */
    margin-top: .5rem !important; /* .mt-2 */
}

.job-description h3,
.job-description h3 strong {
    font-size: 14px; /* .h5 */
    margin-bottom: .1rem !important;
    margin-top: .1rem !important;
}

.second-color {
    color: #485fc7;
}

.header-logo {
    font-size: 24px;
}

ul.berufes {
    display: flex;
    margin-bottom: 20px;
}

ul.berufes li {
    margin-right: 10px;
    border: solid 1px #ccc;
    padding: 0px 4px;
    font-size: 13px;
}


/*# sourceMappingURL=style.css.map */

.breadcrumb.has-dot-separator li + li::before {
    margin-right: 10px;
}


.catalog_gallery.owl-theme .owl-nav {
    position: absolute;
    top: 20%;
    width: 100%;
    margin-top: -15px;
}

.catalog_gallery.owl-theme .owl-nav .owl-prev {
    width: 35px;
    height: 53px;
    line-height: 15px;
    font-size: 20px;
    float: left;
    background: #ce8460;
    color: #fff;
}

.catalog_gallery.owl-theme .owl-nav .owl-next {
    float: right;
    background: #ce8460;
    color: #fff;
    width: 35px;
    height: 53px;
    line-height: 15px;
    font-size: 20px;
}

.play-btn {
    line-height: 45px;
    position: absolute;
    top: 33%;
    left: 0px;
    width: 120px;
    height: 120px;
    text-align: center;
    border-radius: 50%;
    right: 0px;
    margin: 0 auto;
    font-size: 37px;
    padding-top: 38px;
    background: #ce8460;
    color: #fff;
}

.play-btn:hover {
    background: #fff;
    color: #ce8460;
}

@media (max-width: 575px) {

    .play-btn {
        width: 90px;
        height: 90px;
        font-size: 30px;
        padding-top: 24px;
    }
}

@media (max-width: 400px) {

    .play-btn {
        width: 90px;
        height: 90px;
        font-size: 30px;
        padding-top: 24px;
    }
}
.fixed-image-container {
    max-width:100%;
	overflow: hidden; 
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.fixed-image-container img {
	max-width: 100%;
	height: 100%;
	object-fit: cover; 
    object-position:top;
}

/* Ana içerik alanı için hafif arka plan rengi */
.main-content {
    background-color: #fafafa;
    min-height: calc(100vh - 200px);
}

/* Dark Mode Toggle Button */
.theme-toggle-btn {
    background: transparent;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    color: #1c1d1f;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 0.5rem 0.6rem;
    margin: 0;
}

.theme-toggle-btn:hover {
    background: transparent;
    color: #ce8460;
    transform: none;
}

/* Dark Mode Styles */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --border-color: #404040;
    --shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .bg-white {
    background-color: var(--bg-secondary) !important;
}

[data-theme="dark"] .navbar.is-white {
    background-color: var(--bg-secondary) !important;
}

[data-theme="dark"] .navbar-brand {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .navbar-brand:hover {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .navbar-item .navbar-link {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .navbar-item .navbar-link:hover {
    color: #ce8460 !important;
}

[data-theme="dark"] .navbar .has-dropdown .navbar-item {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .navbar .has-dropdown .navbar-item:hover {
    color: #ce8460 !important;
}

[data-theme="dark"] .main-content {
    background-color: var(--bg-primary);
}

[data-theme="dark"] .widget {
    background: var(--bg-secondary);
    box-shadow: 0 2px 8px var(--shadow);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6 {
    color: var(--text-primary);
}

[data-theme="dark"] strong {
    color: #dbdbdb;
}

[data-theme="dark"] .widget-title {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .widget-title span {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] p, 
[data-theme="dark"] .paragraph {
    color: var(--text-secondary);
}

[data-theme="dark"] .post-title {
    color: var(--text-primary);
}

[data-theme="dark"] .post-title:hover {
    color: #ce8460;
}

[data-theme="dark"] .post-meta a, 
[data-theme="dark"] .post-meta span {
    color: var(--text-muted);
}

[data-theme="dark"] .widget-list li a {
    color: var(--text-primary);
}

[data-theme="dark"] .widget-list li a:hover {
    color: #ce8460;
}

[data-theme="dark"] .footer-list a {
    color: var(--text-muted);
}

[data-theme="dark"] .footer-list a:hover {
    color: #ce8460;
}

[data-theme="dark"] .border-default {
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .border-top {
    border-top-color: var(--border-color) !important;
}

[data-theme="dark"] .border-bottom {
    border-bottom-color: var(--border-color) !important;
}

[data-theme="dark"] .input,[data-theme="dark"] textarea {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .input:focus,[data-theme="dark"] textarea:focus {
    border-color: #ce8460;
    background-color: var(--bg-tertiary);
}

[data-theme="dark"] .input::placeholder,[data-theme="dark"] textarea::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .subscription .input {
    background-color: var(--bg-tertiary);
}

[data-theme="dark"] .content blockquote {
    background: var(--bg-secondary);
    border-left-color: #ce8460;
    color: var(--text-secondary);
}

[data-theme="dark"] .content table {
    border-color: var(--border-color);
}

[data-theme="dark"] .content table td, 
[data-theme="dark"] .content table th {
    border-color: var(--border-color);
}

[data-theme="dark"] .content thead {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .content tbody {
    background: var(--bg-secondary);
}

[data-theme="dark"] .pagination .page-item .page-link {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .pagination .page-item .page-link:hover {
    background: #ce8460;
    color: #fff;
}

[data-theme="dark"] .quote {
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .scroll-top {
    border-top-color: var(--border-color);
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f2f5 0%, #e8ecf0 100%);
    width: 100%;
}

.hero-section .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ce8460" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ce8460" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ce8460" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ce8460" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ce8460" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #696c6d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-search {
    margin-bottom: 3rem;
}

.hero-search-input {
    height: 60px;
    font-size: 1.1rem;
    border-radius: 8px 0 0 8px;
    border: 2px solid #ddd;
    padding: 0 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-search-input:focus {
    border-color: #ce8460;
    box-shadow: 0 4px 20px rgba(206, 132, 96, 0.3);
}

.hero-search-btn {
    height: 60px;
    width: 60px;
    border-radius: 0 8px 8px 0;
    background: #ce8460;
    border: 2px solid #ce8460;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-search-btn:hover {
    background: #b8734f;
    border-color: #b8734f;
    transform: translateY(-2px);
}


.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.illustration-circle {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.illustration-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

.illustration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ce8460;
    border-radius: 50%;
    animation: floatAround 8s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-search-input {
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-search-btn {
        height: 50px;
        width: 50px;
    }
    
    
    .hero-image {
        height: 200px;
    }

    .hero-illustration {
        width: 250px;
        height: 250px;
    }

    .illustration-circle {
        width: 100%;
        height: 100%;
    }

    .dot {
        width: 15px;
        height: 15px;
    }
}

[data-theme="dark"] .table {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .table th {
    background-color: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .table td {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .has-background-light {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
}

[data-theme="dark"] .list-inline-item a:hover {
    color: #fff !important;
}

[data-theme="dark"] .label {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .button.is-light {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .button.is-light:hover {
    background-color: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

/* Dark Mode Hero Section */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="dark"] .hero-title {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .hero-search-input {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .hero-search-input:focus {
    border-color: #ce8460;
    background-color: var(--bg-tertiary);
}


[data-theme="dark"] .box {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

/* Features Section Styles */
.features-section {
    padding: 20px 0;
    background-color: #f8f9fa;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Section Header Styles - Ortak */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: #696c6d;
    max-width: 600px;
    margin: 0 auto;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ce8460, #b8734f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #696c6d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

/* Dark mode anchor colors */
[data-theme="dark"] a {
    color: var(--text-primary) !important;
}

[data-theme="dark"] a:hover {
    color: #ce8460 !important;
}

/* Dark Mode Features Section */
[data-theme="dark"] .features-section {
    background-color: var(--bg-primary);
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .section-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .feature-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .feature-title {
    color: var(--text-primary);
}

[data-theme="dark"] .feature-description {
    color: var(--text-secondary);
}

/* Content Section Styles */
.content-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}


.content-grid {
    display: block;
    margin-bottom: 2rem;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}


[data-theme="dark"] .content-section {
    background-color: var(--bg-primary);
}


/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1c1d1f;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ce8460;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: #ce8460;
    color: #fff;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #696c6d;
    line-height: 1.6;
    margin: 0;
}

/* Dark Mode FAQ Section */
[data-theme="dark"] .faq-section {
    background-color: var(--bg-primary);
}


[data-theme="dark"] .faq-item {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .faq-question h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .faq-question:hover {
    background-color: var(--bg-tertiary);
}

[data-theme="dark"] .faq-question {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .faq-answer p {
    color: var(--text-secondary);
}

[data-theme="dark"] .faq-icon {
    background-color: var(--bg-tertiary);
    color: #ce8460;
}

[data-theme="dark"] .faq-item.active .faq-icon {
    background-color: #ce8460;
    color: #fff;
}


/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        display: block;
    }
    
    .home-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .home-grid .box {
        margin-bottom: 1.5rem !important;
    }
    
    .home-grid article p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        max-height: calc(1.4em * 3);
    }
    
    
    .faq-section {
        padding: 40px 0;
    }
    
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
}

[data-theme="dark"] .theme-toggle-btn {
    color: var(--text-primary) !important;
}

/* Contact Page Styles */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info-item {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-item i {
    font-size: 1.2rem;
    color: #ce8460;
    margin-right: 10px;
}

.contact-info-item a {
    color: #1c1d1f;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item a:hover {
    color: #ce8460;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.contact-form .field {
    margin-bottom: 1.5rem;
}

.contact-form .label {
    font-weight: 600;
    color: #1c1d1f;
    margin-bottom: 0.5rem;
}

.contact-form .label i {
    color: #ce8460;
}

.contact-form .input,
.contact-form .textarea {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form .input:focus,
.contact-form .textarea:focus {
    border-color: #ce8460;
    box-shadow: 0 0 0 3px rgba(206, 132, 96, 0.1);
}

.contact-form .input.is-medium,
.contact-form .textarea.is-medium {
    padding: 12px 16px;
}

.contact-form .button.is-primary {
    background: linear-gradient(135deg, #ce8460, #b8734f);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-form .button.is-primary:hover {
    background: linear-gradient(135deg, #b8734f, #a0653e);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(206, 132, 96, 0.3);
}

.contact-form .notification {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Dark Mode Contact Page */
[data-theme="dark"] .contact-info-item {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-item a {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-item a:hover {
    color: #ce8460;
}

[data-theme="dark"] .contact-form-container {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .contact-form .label {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form .input,
[data-theme="dark"] .contact-form .textarea {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form .input:focus,
[data-theme="dark"] .contact-form .textarea:focus {
    border-color: #ce8460;
    background-color: var(--bg-tertiary);
}

/* Page Content Styles */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-content-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.page-content {
    line-height: 1.8;
    color: #1c1d1f;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: #1c1d1f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-content h1 {
    font-size: 2rem;
}

.page-content h2 {
    font-size: 1.75rem;
}

.page-content h3 {
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    color: #696c6d;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: #696c6d;
}

.page-content blockquote {
    border-left: 4px solid #ce8460;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #696c6d;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-content th,
.page-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.page-content th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1c1d1f;
}

/* Dark Mode Page Content */
[data-theme="dark"] .page-content-container {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .page-content {
    color: var(--text-primary);
}

[data-theme="dark"] .page-content h1,
[data-theme="dark"] .page-content h2,
[data-theme="dark"] .page-content h3,
[data-theme="dark"] .page-content h4,
[data-theme="dark"] .page-content h5,
[data-theme="dark"] .page-content h6 {
    color: var(--text-primary);
}

[data-theme="dark"] .page-content p,
[data-theme="dark"] .page-content li {
    color: var(--text-secondary);
}

[data-theme="dark"] .page-content blockquote {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

[data-theme="dark"] .page-content table {
    background: var(--bg-secondary);
}

[data-theme="dark"] .page-content th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .page-content th,
[data-theme="dark"] .page-content td {
    border-bottom-color: var(--border-color);
    color: var(--text-primary);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .contact-info-item {
        padding: 12px 20px;
    }
    
    .contact-form .button.is-primary {
        width: 100%;
    }
    
    .page-content-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .page-content h1 {
        font-size: 1.75rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .page-content h3 {
        font-size: 1.25rem;
    }
}

[data-theme="dark"] .theme-toggle-btn:hover {
    color: #ce8460 !important;
}

[data-theme="dark"] .navbar-burger {
    color: #fff !important;
    background-color: #ce8460 !important;
}

[data-theme="dark"] .navbar-burger:hover {
    color: #fff !important;
    background-color: #b8734f !important;
}

[data-theme="dark"] .navbar-burger span {
    background-color: #fff !important;
}

[data-theme="dark"] .navbar-burger:hover span {
    background-color: #fff !important;
}

@media (max-width: 1023px) {
    [data-theme="dark"] .navbar-menu {
        background-color: var(--bg-secondary) !important;
    }
    
    .navbar-item {
        text-align: left !important;
    }
}