:root {
    --bg-primary: #101010;
    --text-light: white;
    --text-light-rgb: rgb(255, 255, 255);
    --accent-1: #19b5f8;
    --accent-2: #095779;
    --accent-3: #00aaff;
    --accent-4: #00b4d8;
    --accent-5: rgb(136, 224, 36);
    --accent-6: #0077b6;
    --accent-7: #0096c7;
    --accent-8: #005f8f;
    --accent-9: rgb(136, 224, 36 , .1);
    --gradient-start-1: rgba(9, 87, 121, 1);
    --gradient-end-1: rgba(16, 16, 16, 1);
    --border-light-translucent: rgba(255, 255, 255, 0.205);
    --shadow-dark-1: rgba(0,0,0,0.27);
    --shadow-dark-2: rgba(0, 0, 0, 0.35);
    --shadow-dark-3: rgba(0, 0, 0, 0.45);
    --shadow-accent-1: rgba(0, 180, 216, 0.3);
    --shadow-accent-2: rgba(0, 180, 216, 0.45);
    --shadow-light-1: rgba(255, 255, 255, 0.3);
    --bg-transparent: transparent;
    --text-hover-light: #e8e8e8;
    --border-accent-translucent-1: #50c5ff57;
    --shadow-inset-1: #09577979;
    --shadow-inset-2: #00aaff83;
    --shadow-green-1: #0085009a;
    --shadow-green-2: #3a832c8c;
    --bg-card-1: #2f2f31;
    --bg-card-2: #212123;
    --border-popular: #90e0ef;
    --text-dark: #111111;
    --shadow-text-1: rgba(0, 0, 0, 0.2);
    --text-medium-light-1: #aaaaaa;
    --text-medium-light-2: #bbbbbb;
    --text-medium-light-3: #cccccc;
    --bg-popular-light-1: #caf0f8;
    --bg-popular-light-2: #e0f7fa;
    --font-montserrat: "Montserrat", sans-serif;
    --font-oswald: "Oswald", sans-serif;
    --font-gothic: "Special Gothic Expanded One", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html{
    height: auto;
    font-size: 15px;
}
body {
    margin: 0;
    padding: 0;
    height: auto !important;
    background-color: #101010f8;
}
* section{
    margin-top: 5rem;
}
header {
    background-color: rgba(136, 224, 36, .024);
    border-bottom: 1px solid var(--bg-card-2);
    box-shadow: 0rem 0.01rem 0rem var(--shadow-accent-1);
    display: flex;
    align-items: center;
    padding: 0 2.5rem;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    height: 3rem !important;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header h1 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: var(--font-gothic);
}
header h1 a {
    text-decoration: none;
    color: var(--text-light);
}
#Layer_1 {
    fill: var(--accent-5);
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: -1;
    top: 2px;
    left: 27px;
    transform: rotate(0deg);
}
nav {
    position: fixed;
    top: 3rem;
    left: 0;
    width: 100%;
    height: calc(100% - 3rem);
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: all .7s ease-in-out;

}
.navbar {
    display: flex;
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
    background-color: rgba(136, 224, 36, .024);
    backdrop-filter: blur(5px);
    height: 100%;
    transform: translateX(-100%);
    transition: all .4s ease-in-out;
    list-style-type: none;
}
.navbar-item {
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: var(--accent-9) 1px solid;
}
.navbar-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.navbar-item a:hover {
    color: var(--accent-5);
    text-decoration: none;
}
.navbar-item i {
    margin-right: 1rem;
    color: var(--accent-5);
}
.active {
    transform: translateX(0%);
    transition: all .4s ease-in-out;
    opacity: 1;
    pointer-events: all;
}
header i {
    font-size: 1.6rem;
    color: var(--text-light);
}
#Layer_1 {
    fill: var(--accent-5);
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: -1;
    top: 2px;
    left: 27px;
    transform: rotate(0deg);
}
.single-post-section {
    color: var(--text-light);
    line-height: 1.7;
    z-index: 2;
    padding: 20px;
}

.single-post-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-light-translucent);
    background-color: var(--bg-card-2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.post-full-image {
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-light-translucent);
}

.post-full-image img {
    width: 100%;
    height: auto; 
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.post-full-title {
    font-size: 1.4rem;
    font-family: var(--font-gothic);
    color: var(--accent-5);
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-full-meta {
    font-size: 0.9rem;
    color: var(--text-medium-light-2);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-light-translucent); /* Meta altı ayraç */
}

.post-full-meta .author,
.post-full-meta .date,
.post-full-meta .categories {
    margin-right: 10px; 
}
.post-full-meta .categories a { 
    color: var(--text-medium-light-1);
    text-decoration: none;
}
.post-full-meta .categories a:hover {
    color: var(--accent-5);
    text-decoration: underline;
}

.post-separator { 
    border: none;
    height: 1px;
    background-color: var(--border-light-translucent);
    margin: 30px 0;
}


.post-full-content {
    font-size: .8rem; 
    font-family: var(--font-montserrat); 
}


.post-full-content p {
    margin-bottom: 1.2em;
}

.post-full-content h2,
.post-full-content h3,
.post-full-content h4 {
    font-family: var(--font-oswald);
    margin-top: 2em;
    margin-bottom: 0.8em;
    line-height: 1.4;
}
.post-full-content h2 { font-size: 1.6rem; }
.post-full-content h3 { font-size: 1.4rem; }
.post-full-content h4 { font-size: 1.2rem; }

.post-full-content a {
    color: var(--accent-1); 
    text-decoration: underline;
}
.post-full-content a:hover {
    color: var(--accent-hover);
}

.post-full-content ul,
.post-full-content ol {
    margin-left: 25px;
    margin-bottom: 1.2em;
    color: var(--text-medium-light-3);
}
.post-full-content li {
    margin-bottom: 0.5em;
}

.post-full-content blockquote {
    border-left: 4px solid var(--accent-5);
    margin: 1.5em 0;
    padding: 0.5em 15px;
    color: var(--text-medium-light-1);
    background-color: rgba(136, 224, 36, 0.05); 
    font-style: italic;
}
.post-full-content blockquote p {
    margin-bottom: 0;
}

.post-full-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1em 0;
}

.post-full-content pre,
.post-full-content code {
    background-color: #2a2a3a;
    border: 1px solid var(--admin-border);
    border-radius: 4px;
    padding: 0.2em 0.4em;
    font-size: 0.9em;
    font-family: monospace;
    color: #ccc; 
}
.post-full-content pre {
    padding: 1em;
    overflow-x: auto;
    margin-bottom: 1.2em;
}
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
}

.comments-section h2 {
    font-family: var(--font-oswald);
    color: var(--accent-5); 
    margin-bottom: 25px;
    font-size: 1.6rem; 
    border-bottom: 1px solid var(--accent-9);
    padding-bottom: 10px;
}

#comment-form-container h3 { 
    font-family: var(--font-oswald);
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.35rem; 
}
#comment-message {
    font-family: var(--font-montserrat);
    text-align: center;
    font-size: 1rem;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid var(--border-light-translucent);
    background-color: var(--accent-9);
    color: #00e676;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#blog-comment-form .form-group {
    margin-bottom: 20px; 
}

#blog-comment-form label {
    display: block; 
    margin-bottom: 8px;
    color: var(--text-medium-light-1); 
    font-size: 1rem;
    font-weight: 500;
}

#blog-comment-form input[type="text"],
#blog-comment-form textarea {
    display: block;
    width: 100%; 
    padding: 10px; 
    box-sizing: border-box; 
    background-color: var(--accent-9); 
    border: 1px solid var(--border-light-translucent);
    color: var(--text-light);
    border-radius: 5px; 
    font-size: 1em; 
}

#blog-comment-form textarea {
    height: 120px; 
    resize: vertical;
    min-height: 80px;
}

#blog-comment-form button {
    background-color: var(--accent-5);
    width: 100% !important;
    color: var(--text-dark);
    font-weight: 600; 
    padding: 8px 25px; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#blog-comment-form button:hover {
    background-color: rgb(116, 194, 30);
}

#comments-list-container { margin-top: 40px; }
#comments-list-container h4 {
    font-family: var(--font-oswald);
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}
#comments-list .comment-item {
    background-color: var(--accent-9);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #333;
}
#comments-list .comment-author {
    font-weight: bold;
    color: var(--accent-5);
    margin-bottom: 5px;
    font-size: 1.05em;
}
#comments-list .comment-date {
    font-size: 0.8em;
    color: var(--text-medium-light-2);
    margin-bottom: 10px;
    display: block;
}
#comments-list .comment-text {
    font-size: 0.95rem;
    color: var(--text-medium-light-3);
    line-height: 1.6;
}
.loading-comments, .no-comments {
    color: var(--text-medium-light-1);
    font-style: italic;
    font-size: .5rem;
    text-align: center;
    padding: 20px;
}
.blog-list-section {
    padding: 0 20px;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.blog-container {
    max-width: 1100px; 
    margin: 0 auto;
    min-height: 100%;
}

.blog-list-section h1 {
    color: var(--accent-5);
    text-align: center;
    margin: 40px 0;
    font-size: 2.5rem;
    font-family: var(--font-gothic); 
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 40px;
}

.blog-post-summary {
    background-color: var(--bg-card-1); 
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex; 
    flex-direction: column;
    border: 1px solid var(--border-light-translucent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.post-image {
    width: 100%;
    height: 200px; 
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-post-summary:hover .post-image img {
    transform: scale(1.05); 
}

.post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 3; 
}

.post-title {
    font-family: var(--font-oswald); 
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-gothic);
}

.post-title a:hover {
    color: var(--accent-5);
}

.post-meta {
    font-size: 0.85rem;
    color: var(--text-medium-light-2);
    margin-bottom: 15px;
}

.post-excerpt {
    font-family: var(--font-montserrat);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    background-color: var(--accent-5);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start; 
    margin-top: auto; 
}

.read-more:hover {
    background-color: var(--primary-hover-color); 
    background-color: rgb(116, 194, 30); 
    color: #000;
}

.no-posts-message {
    text-align: center;
    color: var(--text-medium-light-1);
    font-size: 1.1rem;
    padding: 40px 0;
}
.footer {
    padding: 5px;
    text-align: center;
    opacity: 0.5;
    font-size: 12px;
    color: #aaa;
}
.footer p {
    text-align: center;
    font-size: .7rem;
}
.footer p a {
    font-size: .70rem;
}
.footer:hover {
    opacity: 1;
}

@media (min-width: 1024px){
    * h1, * h2 {
        color: var(--text-light);
    }
    * p {
        color: var(--text-light);
    }
    header {
        display: none;
    }
    html {
        font-size: 20px;
    }
    * section {
        margin: 0rem !important;
        padding: 5rem 0 0 0 !important;
    }
    nav {
        position:absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6rem;
        opacity: 1;
        pointer-events: all;
        transition: all .7s ease-in-out;
        background-color: transparent;
        z-index: 999;
    }

    .navbar-item a:hover {
        color: var(--accent-3);
    }
    .single-post-section {
        padding: 6rem 0 0 0 !important;
        line-height: 1.1;
        height: 100%;
    }
    .single-post-container {
        border: 3px solid #005f8f1a;
        max-width: 800px;
        margin-top: 1rem !important;
    }
    .post-full-image {
        border: 3px solid #005f8f1a;
    }
    .post-full-title {
        font-size: 1rem;
        color: var(--accent-1);
    }
    .post-full-meta {
        font-size: 0.7rem;
        color: var(--text-medium-light-2);
    }
    .post-full-meta .author,
    .post-full-meta .date,
    .post-full-meta .categories {
        margin-right: 10px; /* Meta elemanları arası boşluk */
        font-size: .48rem;
    }
    .post-full-content {
        font-size: 0.45rem;
    }
    .post-full-content p {
        margin-bottom: 1em;
        /* color: var(--text-medium-light-3) Paragraf rengi */
    }
    .comments-section h2 {
        font-size: .8rem;
        color: var(--accent-1);
        border-bottom: var(--border-light-translucent) 1px solid;
    }
    #comment-form-container h3 { 
        font-size: .65rem;
        margin-bottom: 2rem;
    }
    #blog-comment-form label {
        font-size: 0.48rem;
    }
    #blog-comment-form input[type="text"],
    #blog-comment-form textarea {
        font-size: 0.38rem;
        background-color: #005f8f1a;
    }
    #comment-message {
        font-size: 0.48rem;
        background-color: #005f8f1a;
        color: #00e676;
    }
    #blog-comment-form textarea {
        height: 120px; 
        min-height: 80px;
    }
    #blog-comment-form button {
        font-size: 0.58rem;
        background-color: var(--accent-1);
        color: var(--text-light);
        transition: all .5s ease;
    }
    #blog-comment-form button:hover {
        background-color: var(--accent-1);
        color: var(--text-light);
        transform: scale(1.05);
    }
    #comments-list-container h4 {
        font-size: .7rem;
    }
    #comments-list .comment-item {
        background-color: #005f8f1a;
    }
    #comments-list .comment-author {
        font-size: 0.58rem;
        color: var(--accent-1);
    }
    #comments-list .comment-date {
        font-size: 0.48rem;
        color: var(--text-medium-light-2);
    }
    #comments-list .comment-text {
        font-size: 0.5rem;
        color: var(--text-medium-light-3);
    }
    .blog-list-section {
        padding: 6rem 1rem !important;
    }
    .blog-list-section h1 {
        color: var(--text-light);
        text-align: center;
    }
    .blog-container {
        max-width: 75%; 
        margin: 0 auto;
    }
    .post-image {
        width: 100%;
        height: 200px; 
        overflow: hidden;
    }
    .post-title {
        font-family: var(--font-oswald); /* Başlık fontu */
        font-size: .58rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-title a:hover {
        color: var(--accent-1); /* Hover rengi */
    }
    .post-meta {
        font-size: 0.42rem;
    }
    .post-excerpt {
        font-size: .48rem;
    }
    .read-more {
        background-color: #005f8f1a;
        color: var(--text-light);
        padding: 5px 10px;
        font-weight: 600;
        font-family: var(--font-montserrat);
        border: 1px solid var(--accent-1);
        font-size: 0.55rem;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .read-more:hover {
        background-color: var(--accent-1); /* (style_yorum.css'den alınabilir veya tanımlanabilir) */
        color: #000;
    }
    .footer {
        padding: 10px 20px;
        text-align: right;
        opacity: 0.5;
        font-size: 12px;
        color: #aaa;
    }
    .footer p {
        text-align: right;
        font-size: .45rem;
    }
    .footer p a {
        font-size: .45rem;
    }
    .footer:hover {
        opacity: 1;
    }
    
}
@media (min-width: 1440px){
    html {
        font-size: 30px;
    }
    .navbar-item {
        font-size: .589rem;
    }
    .single-post-container {
        max-width: 1000px;
    }
    .blog-container {
        max-width: 95%; 
    }
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-post-summary {
        background: linear-gradient(145deg, #005f8f1a 80%, var(--accent-1) 150%);
        min-height: 550px;
        max-height: 550px;
    }
    .page-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}
@media (min-width: 1920px){
    .navbar {
        gap: 4rem;

    }
    .blog-posts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (min-width: 2560px){
    html {
        font-size: 45px;
    }
    nav {
        height: 4rem;
    }
    .navbar-item {
        font-size: .5rem;
    }
    .single-post-section {
        padding: 4rem 1rem !important;
    }
    .post-full-title {
        font-size: .65rem;
        letter-spacing: 1px;
    }
    .post-full-meta {
        font-size: 0.55rem;
    }
    .post-full-meta .author,
    .post-full-meta .date,
    .post-full-meta .categories {
    font-size: .29rem;
    color: var(--text-medium-light-2);
}
    .post-full-content {
    font-size: 0.35rem;
}
.comments-section h2 {
    font-size: .8rem;
    margin-bottom: 1rem;
}
#comment-form-container h3 { 
    font-size: .60rem;
    margin-bottom: 1rem;
}
#blog-comment-form label {
    font-size: 0.3rem;
}
#blog-comment-form button {
    font-size: 0.45rem;

}
#comments-list-container h4 {
    font-size: .5rem;
}
#comments-list .comment-author {
    font-size: 0.4rem;
    color: var(--accent-1);
}
#comments-list .comment-date {
    font-size: 0.25rem;
    color: var(--text-medium-light-2);
}
#comments-list .comment-text {
    font-size: 0.28rem;
    color: var(--text-medium-light-3);
}
.blog-list-section {
    padding: 4rem 1rem !important;
}
.blog-post-summary {
    min-height: 550px;
    max-height: 550px;
}
.post-image {
    max-height: 200px;
    min-height: 200px; 
}
.post-title {
    font-size: .45rem;
}
.blog-posts-grid {
    grid-template-columns: repeat(5, 1fr);
}
.post-meta {
    font-size: 0.22rem;
}
.post-excerpt {
    font-size: .3rem;
}
.read-more {
    font-size: 0.4rem;
}
.footer p {
    text-align: right;
    font-size: .38rem;
}
.footer p a {
    font-size: .38rem;
}
}