/**
 * Main CSS file for Yazarın Sesi theme
 *
 * @package Yazarın Sesi
 */

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, a:focus {
    color: darken(var(--primary-color), 10%);
    text-decoration: none;
}

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

ul, ol {
    margin: 0 0 20px 20px;
}

li {
    margin-bottom: 5px;
}

blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 10px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.toggle-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.toggle-icon:before, .toggle-icon:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.toggle-icon:before {
    top: -8px;
}

.toggle-icon:after {
    bottom: -8px;
}

.mobile-menu-toggle.active .toggle-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .toggle-icon:before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-icon:after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Fixed Header */
.fixed-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
    background-color: #fff;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: darken(var(--primary-color), 10%);
    color: #fff;
}

/* Container and Grid */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border-color: #ddd;
    color: var(--text-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    color: #666;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    width: 100%;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    color: #111;
    border-color: var(--primary-color);
    outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

textarea {
    width: 100%;
    min-height: 150px;
}

/* Blog Styles */
.blog-post {
    margin-bottom: 50px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.entry-title {
    margin: 0 0 15px;
    font-size: 24px;
}

.entry-meta {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.entry-content {
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Grid Layout */
.grid-post {
    display: flex;
    flex-direction: column;
}

.grid-post .post-thumbnail {
    height: 220px;
}

.grid-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* List Layout */
.list-post {
    display: flex;
    flex-direction: row;
}

.list-post .post-thumbnail {
    flex: 0 0 300px;
    height: 250px;
}

.list-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-post .post-content {
    flex: 1;
}

/* Single Post */
.single-post .post-thumbnail {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.single-post .entry-title {
    font-size: 36px;
}

.post-navigation {
    margin: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 0 0 48%;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-subtitle {
    display: block;
    color: #777;
    font-size: 14px;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    font-size: 18px;
    font-weight: 500;
}

.author-bio {
    margin: 50px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
}

.author-avatar {
    flex: 0 0 100px;
    margin-right: 20px;
}

.author-avatar img {
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    margin: 0 0 10px;
    font-size: 20px;
}

.author-description {
    margin-bottom: 15px;
}

.author-link {
    font-weight: 500;
}

.post-share {
    margin: 30px 0;
}

.post-share h4 {
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
}

.share-buttons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-pinterest {
    background-color: #bd081c;
}

.share-buttons a:hover {
    opacity: 0.8;
    color: #fff;
}

/* Comments */
.comments-area {
    margin: 50px 0;
}

.comments-title {
    margin-bottom: 30px;
    font-size: 24px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-metadata {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.comment-content {
    margin-bottom: 15px;
}

.reply {
    text-align: right;
}

.comment-reply-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.comment-respond {
    margin-top: 50px;
}

.comment-reply-title {
    margin-bottom: 30px;
    font-size: 24px;
}

.comment-notes {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    width: 33.333333%;
    float: left;
    padding-right: 15px;
    margin-bottom: 20px;
}

.comment-form-url {
    padding-right: 0;
}

.form-submit {
    clear: both;
    margin-top: 20px;
}

/* Sidebar */
.widget-area {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget {
    margin-bottom: 40px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul li a {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.search-form {
    position: relative;
}

.search-form .search-field {
    width: 100%;
    padding-right: 50px;
}

.search-form .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-item {
    margin: 0 5px;
}

.page-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #f9f9f9;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: #fff;
}

/* Book Styles */
.book-card {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.book-cover {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.book-card:hover .book-cover img {
    transform: scale(1.05);
}

.book-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.book-author {
    color: #777;
    margin-bottom: 10px;
    font-style: italic;
}

.book-categories {
    margin-bottom: 10px;
    font-size: 14px;
}

.book-excerpt {
    margin-bottom: 15px;
    flex: 1;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Single Book */
.book-single-container {
    display: flex;
}

.book-single-container.has-sidebar .book-content {
    flex: 0 0 70%;
    padding-right: 30px;
}

.book-single-container.has-sidebar .book-sidebar {
    flex: 0 0 30%;
}

.book-single-container.no-sidebar .book-content {
    flex: 0 0 100%;
}

.book-main-info {
    display: flex;
    margin-bottom: 50px;
}

.book-main-info .book-cover {
    flex: 0 0 300px;
    height: 450px;
    margin-right: 30px;
}

.book-main-info .book-details {
    flex: 1;
    padding: 0;
}

.book-author, .book-categories, .book-publication-date, .book-isbn, .book-pages {
    margin-bottom: 15px;
}

.book-author .author-label,
.book-categories .category-label,
.book-publication-date .date-label,
.book-isbn .isbn-label,
.book-pages .pages-label {
    font-weight: 700;
    margin-right: 10px;
}

.book-actions {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.book-actions .btn {
    margin-right: 10px;
    margin-bottom: 10px;
}

.book-excerpt h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.book-details-tabs {
    margin: 50px 0;
}

.tabs-nav {
    display: flex;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.tabs-nav li {
    margin: 0 20px 0 0;
}

.tabs-nav li a {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.tabs-nav li.active a {
    color: var(--primary-color);
}

.tabs-nav li.active a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Book Archive */
.book-archive-container {
    display: flex;
}

.book-archive-container.has-sidebar .book-main-content {
    flex: 0 0 70%;
    padding-right: 30px;
}

.book-archive-container.has-sidebar .book-sidebar {
    flex: 0 0 30%;
}

.book-archive-container.no-sidebar .book-main-content {
    flex: 0 0 100%;
}

.book-filter {
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
}

.filter-row {
    display: flex;
    margin-bottom: 20px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-col {
    flex: 1;
    padding: 0 10px;
}

.filter-col:first-child {
    padding-left: 0;
}

.filter-col:last-child {
    padding-right: 0;
}

.filter-col label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.book-layout-switch {
    display: flex;
}

.layout-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    color: #777;
}

.layout-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.book-search-form {
    position: relative;
}

.book-search-form input {
    width: 100%;
    padding-right: 50px;
}

.book-search-form button {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
}

/* List Layout for Books */
.books-container.list-layout {
    display: block;
}

.books-container.list-layout .book-item {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.books-container.list-layout .book-cover {
    flex: 0 0 200px;
    height: 300px;
}

.books-container.list-layout .book-details {
    flex: 1;
}

.books-container.list-layout .book-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.books-container.list-layout .book-meta span {
    margin-right: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #777;
}

.books-container.list-layout .book-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Related Books */
.related-books {
    margin-top: 50px;
}

.related-books h2 {
    margin-bottom: 30px;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 80px 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.page-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-options {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.or-text {
    margin: 0 15px;
    font-style: italic;
    color: #777;
}

.error-search {
    max-width: 400px;
    margin: 0 auto 30px;
}

.error-suggestions h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.error-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.error-suggestions li {
    margin: 0 10px 10px;
}

/* Search Results */
.search-results-count {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-style: italic;
    color: #777;
}

.search-result-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.search-item-container {
    display: flex;
}

.search-thumbnail {
    flex: 0 0 150px;
    margin-right: 20px;
}

.search-content {
    flex: 1;
}

/* Helper Classes */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
 {
    margin-bottom: 5px;
}

blockquote {
    border-left: 3px solid var(--primary-color);
    padding: 10px 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.toggle-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.toggle-icon:before, .toggle-icon:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.toggle-icon:before {
    top: -8px;
}

.toggle-icon:after {
    bottom: -8px;
}

.mobile-menu-toggle.active .toggle-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .toggle-icon:before {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-icon:after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Fixed Header */
.fixed-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
    background-color: #fff;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: darken(var(--primary-color), 10%);
    color: #fff;
}

/* Container and Grid */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border-color: #ddd;
    color: var(--text-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    color: #666;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    width: 100%;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    color: #111;
    border-color: var(--primary-color);
    outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

textarea {
    width: 100%;
    min-height: 150px;
}

/* Madalyalar bölümü ve footer için metin renk düzeltmesi */
.medals-section,
.site-footer {
    color: #ffffff; /* Beyaz metin rengi */
}

.medals-section h2,
.medals-section .medals-title,
.medals-section .medal-title,
.site-footer h4,
.site-footer .footer-title {
    color: #ffffff;
}

.medals-section .medals-desc,
.medals-section .medal-desc,
.site-footer .footer-description,
.site-footer .contact-info,
.site-footer .footer-links li a {
    color: rgba(255, 255, 255, 0.9);
}

.medals-section .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

.medals-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer Tasarım Düzenlemesi - Grid Sorunu Çözüldü */
.site-footer {
    padding-top: 60px;
    padding-bottom: 0;
    background-color: var(--primary-color); /* Redux'tan gelen ayar */
    color: #ffffff;
}

.site-footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Marka Kısmı */
.footer-brand {
    text-align: left;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-description {
    max-width: 600px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Sütunları - Grid için düzeltildi */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-bottom: 40px;
}

/* Önemli: Her sütunun grid hücresi olarak davranmasını sağla */
.footer-column {
    min-width: 0; /* Grid sütununun içeriğine göre daralmayı önler */
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #fff;
}

/* Footer Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* İletişim Bilgileri */
.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Sosyal Medya */
.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Telif Hakkı */
.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer - Önemli Değişiklikler */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-brand {
        text-align: center;
    }
    
    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-column h4 {
        text-align: center;
    }
    
    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Geliştirilmiş Özellikler Bölümü CSS */
.features-section {
    padding: 80px 0;
    background-color: #f5f5f5; /* Açık gri arka plan */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Özellikler container */
.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px; /* Sütunlar arası boşluğu artırdım */
}

/* Özellik bileşeni */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px; /* Minimum yükseklik */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* İkon container'ı */
.feature-icon {
    margin-bottom: 25px; /* Biraz daha fazla boşluk */
    height: 60px; /* Sabit yükseklik */
    width: 60px; /* Sabit genişlik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px; /* İkon boyutunu azalttım */
    color: var(--primary-color, #9c4649);
}

.feature-icon img {
    max-height: 60px;
    max-width: 60px;
}

/* Başlık stili */
.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase; /* Büyük harflerle yazdırma */
    letter-spacing: 1px; /* Harf aralığını biraz açma */
}

.feature-description {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive tasarım için */
@media (max-width: 1100px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        padding: 25px 15px;
    }
}

@media (max-width: 767px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features-section {
        padding: 50px 0;
    }
}

/* Özellikler bölümü için alternatif stil (ikinci bölümde kullanılabilir) */
.features-section.alt {
    background-color: #fff;
}

.features-section.alt .feature-item {
    background-color: #f9f9f9;
}

/* Özellik bağlantıları */
.feature-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

/* Görüntüde görünen tekrarlanan özellikler bölümü için özel stil */
.features-section + .features-section {
    margin-top: -40px; /* İki bölüm arasındaki boşluğu azalt */
    padding-top: 0;
}

/* Öne Çıkan Özellikler başlık kısmı */
.one-cikan-ozellikler {
    text-align: center;
    margin-bottom: 40px;
}

.one-cikan-ozellikler h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.one-cikan-ozellikler p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}