/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #374151;
    background: #f9fafb;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.tftema-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOPBAR ===== */
.tftema-topbar {
    background: var(--tftema-primary);
    color: #fff;
    padding: 14px 0;
    font-size: 13px;
}

.tftema-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tftema-topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tftema-topbar-left span + span::before {
    content: '·';
    margin-right: 20px;
    opacity: 0.5;
}

.tftema-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tftema-topbar-right a {
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.tftema-topbar-right a:hover {
    opacity: 1;
}

/* ===== HEADER ===== */
.tftema-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.tftema-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.tftema-logo a {
    display: flex;
    align-items: center;
}

.tftema-logo-img {
    max-height: 50px;
    width: auto;
}

.tftema-logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--tftema-primary);
    letter-spacing: -0.5px;
}

/* ===== NAV ===== */
.tftema-nav {
    display: none;
}

.tftema-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.tftema-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4b5563;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.tftema-menu > li > a:hover,
.tftema-menu > li.current-menu-item > a {
    color: var(--tftema-accent);
    border-bottom-color: var(--tftema-accent);
}

.tftema-menu-arrow {
    font-size: 8px;
    transition: transform 0.2s;
}

/* Submenu */
.tftema-menu > li {
    position: relative;
}

.tftema-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}

.tftema-menu > li:hover > .tftema-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tftema-submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #4b5563;
    transition: background 0.2s, color 0.2s;
}

.tftema-submenu li a:hover {
    background: rgba(var(--tftema-accent-rgb), 0.06);
    color: var(--tftema-accent);
}

/* Header Right */
.tftema-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tftema-header-side {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 4px;
}

.tftema-header-side-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    line-height: 1;
}

.tftema-header-side-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--tftema-primary);
}

.tftema-header-btn {
    display: none;
    background: var(--tftema-accent);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(var(--tftema-accent-rgb), 0.3);
}

.tftema-header-btn:hover {
    background: var(--tftema-primary);
    box-shadow: 0 4px 15px rgba(var(--tftema-primary-rgb), 0.3);
}

/* Mobile Toggle */
.tftema-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.tftema-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tftema-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.tftema-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tftema-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.tftema-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.tftema-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.tftema-mobile-menu.active {
    right: 0;
}

.tftema-mobile-menu-list {
    list-style: none;
}

.tftema-mobile-menu-list li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    font-weight: 500;
}

.tftema-mobile-menu-list .sub-menu {
    list-style: none;
    padding-left: 20px;
}

.tftema-mobile-menu-list .sub-menu li a {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.tftema-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.tftema-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MINIMAL HERO ===== */
.tftema-hero {
    padding: 30px 0 30px;
    background:
        radial-gradient(ellipse 600px 400px at 10% 80%, rgba(var(--tftema-accent-rgb), 0.06), transparent),
        radial-gradient(ellipse 500px 500px at 90% 20%, rgba(var(--tftema-primary-rgb), 0.05), transparent),
        linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    overflow: clip;
    position: relative;
}

.tftema-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(var(--tftema-accent-rgb), 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero arkaplan görseli */
.tftema-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.tftema-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tftema-hero--has-bg .tftema-container {
    position: relative;
    z-index: 1;
}

.tftema-hero--has-bg::before {
    z-index: 0;
}

.tftema-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tftema-hero-content {
    max-width: 560px;
}

.tftema-hero-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tftema-accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(var(--tftema-accent-rgb), 0.08);
    border-radius: 50px;
}

.tftema-hero-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--tftema-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.tftema-hero-text {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.tftema-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tftema-btn--secondary {
    background: transparent;
    color: var(--tftema-primary);
    border: 2px solid #d1d5db;
    padding: 12px 30px;
}

.tftema-btn--secondary:hover {
    border-color: var(--tftema-accent);
    color: var(--tftema-accent);
}

.tftema-hero-image {
    text-align: center;
    position: relative;
}

/* Dekoratif şekiller */
.tftema-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, rgba(var(--tftema-accent-rgb), 0.15), rgba(var(--tftema-accent-rgb), 0.05));
    border-radius: 24px;
    z-index: 0;
    transform: rotate(6deg);
}

.tftema-hero-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(var(--tftema-accent-rgb), 0.2);
    border-radius: 50%;
    z-index: 0;
}

/* Nokta deseni */
.tftema-hero-slideshow::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(rgba(var(--tftema-accent-rgb), 0.3) 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 3;
    pointer-events: none;
}

/* Hero Slideshow */
.tftema-hero-slideshow {
    position: relative;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1350/556;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 25px 60px rgba(var(--tftema-primary-rgb), 0.15);
}

.tftema-hero-slideshow > * {
    border-radius: 10px;
    overflow: hidden;
}

.tftema-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    border-radius: 10px;
    overflow: hidden;
}

.tftema-hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.tftema-hero-slide.leaving {
    opacity: 0;
    transform: scale(0.96);
    z-index: 1;
}

.tftema-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tek görsel varsa sadece normal göster */
.tftema-hero-slideshow[data-count="1"] .tftema-hero-slide {
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
}

/* ===== BLOG SECTION ===== */
.tftema-blog-section {
    background: #f9fafb;
}

.tftema-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tftema-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.tftema-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.tftema-blog-card-image {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.tftema-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.tftema-blog-card:hover .tftema-blog-card-image img {
    transform: scale(1.05);
}

.tftema-blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tftema-blog-card-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--tftema-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.tftema-blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--tftema-primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

.tftema-blog-card-excerpt {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.tftema-blog-card-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--tftema-accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.tftema-blog-card:hover .tftema-blog-card-more {
    gap: 10px;
}

/* ===== BUTTONS ===== */
.tftema-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
    text-align: center;
    line-height: 1;
}

.tftema-btn--primary {
    background: var(--tftema-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--tftema-accent-rgb), 0.3);
}

.tftema-btn--primary:hover {
    background: var(--tftema-primary);
    box-shadow: 0 4px 15px rgba(var(--tftema-primary-rgb), 0.3);
}

.tftema-btn--white {
    background: #fff;
    color: var(--tftema-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.tftema-btn--white:hover {
    background: #f3f4f6;
}

.tftema-btn--outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.tftema-btn--outline:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
.tftema-section {
    padding: 80px 0;
}

.tftema-section:nth-child(even) {
    background: #fff;
}

.tftema-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tftema-section-subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tftema-accent);
    margin-bottom: 12px;
}

.tftema-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--tftema-primary);
    line-height: 1.2;
}

/* About Grid */
.tftema-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.tftema-about-grid--reverse {
    direction: ltr;
}

.tftema-about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.tftema-about-content .tftema-section-subtitle {
    text-align: left;
}

.tftema-about-content .tftema-section-title {
    text-align: left;
    margin-bottom: 20px;
}

.tftema-about-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
}

.tftema-section-btn {
    margin-top: 24px;
}

/* ===== STATS ===== */
.tftema-stats {
    position: relative;
    background: var(--tftema-primary);
    padding: 70px 0;
    overflow: hidden;
}

.tftema-stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--tftema-primary-rgb), 0.95), rgba(var(--tftema-accent-rgb), 0.85));
}

.tftema-stats .tftema-container {
    position: relative;
    z-index: 2;
}

.tftema-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.tftema-stat-item {
    color: #fff;
}

.tftema-stat-icon {
    font-size: 32px;
    margin-bottom: 14px;
    opacity: 0.7;
}

.tftema-stat-number {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.tftema-stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* ===== QUOTE / MOTTO ===== */
.tftema-quote {
    padding: 80px 0;
    background: #fff;
}

.tftema-quote-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.tftema-quote-icon {
    font-size: 48px;
    color: var(--tftema-accent);
    opacity: 0.2;
    margin-bottom: 24px;
}

.tftema-quote-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--tftema-primary);
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 20px;
    background: none;
}

.tftema-quote-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--tftema-accent);
    font-style: normal;
    letter-spacing: 1px;
}

/* ===== ABOUT IMAGE ACCENT ===== */
.tftema-about-image {
    position: relative;
}

.tftema-about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--tftema-accent);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

/* ===== PAGE BANNER ===== */
.tftema-page-banner {
    background: var(--tftema-primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tftema-page-banner--has-bg .tftema-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--tftema-primary-rgb), 0.8);
}

.tftema-page-banner .tftema-container {
    position: relative;
    z-index: 2;
}

.tftema-page-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

/* ===== BREADCRUMB ===== */
.tftema-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.tftema-breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.tftema-breadcrumb a:hover {
    color: #fff;
}

.tftema-breadcrumb-sep {
    margin: 0 8px;
    opacity: 0.5;
}

.tftema-breadcrumb-current {
    color: #fff;
}

/* ===== CONTENT LAYOUT ===== */
.tftema-content-wrap {
    padding: 50px 0;
}

.tftema-content-layout {
    display: grid;
    gap: 40px;
}

.tftema-has-sidebar {
    grid-template-columns: 1fr 300px;
}

.tftema-full-width {
    grid-template-columns: 1fr;
}


/* ===== SIDEBAR ===== */
.tftema-sidebar {
    position: sticky;
    top: 100px;
}

.tftema-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--tftema-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tftema-accent);
}

.tftema-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tftema-sidebar-post {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    transition: background 0.2s;
}

.tftema-sidebar-post:hover {
    background: #f3f4f6;
}

.tftema-sidebar-post-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.tftema-sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tftema-sidebar-post-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

/* ===== SINGLE POST ===== */
.tftema-single-featured {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.tftema-single-featured img {
    width: 100%;
}

.tftema-single-content {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

.tftema-single-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--tftema-primary);
    margin: 32px 0 16px;
}

.tftema-single-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--tftema-primary);
    margin: 28px 0 12px;
}

.tftema-single-content p {
    margin-bottom: 16px;
}

.tftema-single-content img {
    border-radius: 12px;
    margin: 20px 0;
}

.tftema-single-content ul,
.tftema-single-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.tftema-single-content li {
    margin-bottom: 8px;
}

.tftema-single-content blockquote {
    border-left: 4px solid var(--tftema-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(var(--tftema-accent-rgb), 0.04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #6b7280;
}

/* ===== PAGINATION ===== */
.tftema-pagination {
    margin-top: 40px;
}

.tftema-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.tftema-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.tftema-pagination .page-numbers.current,
.tftema-pagination .page-numbers:hover {
    background: var(--tftema-accent);
    color: #fff;
    border-color: var(--tftema-accent);
}

/* ===== 404 ===== */
.tftema-404 {
    text-align: center;
    padding: 60px 0;
}

.tftema-404 h2 {
    font-size: 120px;
    font-weight: 700;
    color: var(--tftema-primary);
    line-height: 1;
    opacity: 0.15;
}

.tftema-404 p {
    font-size: 18px;
    color: #6b7280;
    margin: 20px 0 30px;
}

/* ===== GALLERY ===== */
.tftema-gallery {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.tftema-gallery-cols-2 { grid-template-columns: repeat(2, 1fr); }
.tftema-gallery-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tftema-gallery-cols-4 { grid-template-columns: repeat(4, 1fr); }
.tftema-gallery-cols-1 { grid-template-columns: 1fr; }

.tftema-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
}

.tftema-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.tftema-gallery-item:hover img {
    transform: scale(1.05);
}

.tftema-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--tftema-primary-rgb), 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tftema-gallery-item:hover .tftema-gallery-overlay {
    opacity: 1;
}

/* ===== FOOTER ===== */
.tftema-footer {
    background: var(--tftema-primary);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

.tftema-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.tftema-footer-logo-img {
    max-height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.tftema-footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

.tftema-footer-social {
    display: flex;
    gap: 10px;
}

.tftema-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: background 0.2s;
}

.tftema-footer-social a:hover {
    background: var(--tftema-accent);
}

.tftema-footer-menu {
    list-style: none;
}

.tftema-footer-menu li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.tftema-footer-menu li a:hover {
    color: #fff;
}

.tftema-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tftema-footer-contact-item {
    font-size: 14px;
}

.tftema-footer-contact-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.tftema-footer-contact-item a:hover {
    color: #fff;
}

.tftema-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ===== WP ADMIN BAR FIX ===== */
.admin-bar .tftema-header {
    top: 32px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .tftema-header-side {
        display: flex;
    }
}

@media (min-width: 768px) {
    .tftema-about-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tftema-about-grid--reverse .tftema-about-image {
        order: 2;
    }
    .tftema-about-grid--reverse .tftema-about-content {
        order: 1;
    }
    .tftema-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .tftema-nav {
        display: block;
    }
    .tftema-mobile-toggle {
        display: none;
    }
    .tftema-header-btn {
        display: inline-block;
    }
}

@media (max-width: 1023px) {
  
	
	.tftema-hero {
    padding: 0px 0 0px;
	border-radius:0px;
	}

	.tftema-hero img, .tftema-hero-slide {
    padding: 0px 0 0px;
	border-radius:0px;
	}


	.tftema-containerx {
    width:100% !important;
    padding: 0px 0 0px;
	border-radius:0px !important;
	}
	
	.tftema-hero-slideshow > * {
    border-radius: 0px;
}



.tftema-hero-slide {
    border-radius: 0px;
}


  .tftema-has-sidebar {
        grid-template-columns: 1fr;
    }
    .tftema-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tftema-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.tftema-content-wrap {
    padding: 50px 20px 50px 20px;
	}


}

@media (max-width: 767px) {
    .tftema-section {
        padding: 50px 0;
    }
    .tftema-section-title {
        font-size: 26px;
    }
    .tftema-page-banner-title {
        font-size: 26px;
    }
    .tftema-blog-grid {
        grid-template-columns: 1fr;
    }
    .tftema-hero-title {
        font-size: 32px;
    }
    .tftema-hero-image::before,
    .tftema-hero-image::after,
    .tftema-hero-slideshow::after {
        display: none;
    }
    .tftema-footer-grid {
        grid-template-columns: 1fr;
    }
    .tftema-topbar-email {
        display: none;
    }
    .tftema-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .tftema-quote-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .tftema-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tftema-stat-number {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .tftema-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}
