
/*
Theme Name: ankaraantalyaambari.com
Theme URI: http://ankaraantalyaambari.com
Author: Custom
Description: Minimal, Twenty Twenty-Five inspired theme for ankaraantalyaambari.com.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ankaraantalyaambari.com
Tags: blog, minimal, responsive, block-style-inspired
*/

@import url('https://fonts.googleapis.com/css2?family=Platypi:wght@400;700&family=Literata:wght@400;700&display=swap');

:root {
    --primary-color: #F97316;
    --secondary-color: #FCD34D;
    --background-color: #FFF7ED;
    --header-font: 'Platypi', serif;
    --body-font: 'Literata', serif;
    --text-color: #111111;
    --border-color: #e5e7eb;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

/* Header styling */
header {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
header .site-title {
    margin: 0;
    font-family: var(--header-font);
    font-size: 3rem;
    line-height: 1.2;
}
header .site-description {
    margin-top: 15px;
    font-size: 1.25rem;
    opacity: 0.7;
}

/* Navigation menu */
.primary-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.primary-menu li {
    margin: 0;
}
.primary-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}
.primary-menu a:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* Content wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Post card / article */
.post-card {
    margin-bottom: 40px;
}
.post-card h2.entry-title {
    margin: 0 0 10px 0;
    font-family: var(--header-font);
    font-size: 2rem;
    line-height: 1.2;
}
.post-card h2.entry-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}
.post-card h2.entry-title a:hover {
    text-decoration: underline;
}
.post-card .entry-content {
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}
.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-menu li { margin: 0; }
.footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}
.footer-menu a:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

@media (max-width: 768px) {
    header .site-title { font-size: 2.5rem; }
    header .site-description { font-size: 1rem; }
    .primary-menu ul { gap: 10px; }
    .post-card h2.entry-title { font-size: 1.6rem; }
}
