/* Daily Dish Hugo Theme */
/* Matched to Daily Dish Pro WordPress Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px browser default */
}

body {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.625;
    color: #000;
    background-color: #f5f5f5;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQYV2P4////fwAJ+wP9BUNFygAAAABJRU5ErkJggg==');
    background-attachment: fixed;
    background-repeat: repeat;
    animation: fadein 1s;
}

@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

a {
    color: #d9037f;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
    color: #000;
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: none;
    padding: 40px 0 0;
    text-align: center;
}

.header-inner {
    display: block;
}

.site-branding {
    margin-bottom: 30px;
}

.site-logo img {
    max-width: 400px;
    width: 400px;
    height: auto;
    display: inline-block;
}

.site-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.site-description {
    display: none;
}

/* Navigation */
.main-navigation {
    background-color: #fff;
    border-top: double #ddd;
    border-bottom: double #ddd;
    padding: 15px 0;
    margin: 0;
    transition: all 0.2s ease-in-out;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu li a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    padding: 5px 0;
}

.nav-menu li:first-child a {
    color: #d9037f;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: #d9037f;
    text-decoration: none;
}

.nav-menu .search-icon a {
    display: flex;
    align-items: center;
    padding: 5px;
}

.nav-menu .search-icon svg {
    width: 16px;
    height: 16px;
    fill: #000;
    transition: all 0.2s ease-in-out;
}

.nav-menu .search-icon a:hover svg {
    fill: #d9037f;
}

/* Main Content */
#content {
    padding: 50px 0;
    min-height: 60vh;
    background-color: #f5f5f5;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    background-color: transparent;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.main-content {
    min-width: 0;
    background: #fff;
    padding: 60px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Posts List (Homepage) */
.posts-list {
    margin-bottom: 40px;
}

.post-entry {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.post-entry:last-child {
    border-bottom: none;
}

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

.entry-title {
    font-family: 'Cormorant', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.entry-title a {
    color: #000;
    text-decoration: none;
}

.entry-title a:hover {
    color: #d9037f;
}

.entry-meta {
    font-family: 'Cormorant', serif;
    font-size: 1.6rem;
    color: #000;
    font-style: italic;
    margin: 0 0 15px 0;
}

.entry-meta .entry-author {
    font-style: normal;
}

.entry-meta a {
    color: #000;
}

.entry-meta a:hover {
    color: #d9037f;
}

.entry-content {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    line-height: 1.625;
    color: #000;
}

.entry-content p {
    margin: 0;
}

.entry-image {
    float: left;
    margin: 5px 25px 15px 0;
    max-width: 300px;
}

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

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

.more-link {
    color: #d9037f;
    font-style: italic;
}

.more-link:hover {
    color: #000;
    text-decoration: underline;
}

.entry-footer {
    margin-top: 15px;
    font-family: 'Cormorant', serif;
    font-size: 1.6rem;
    font-style: italic;
    clear: both;
}

.entry-categories a {
    color: #000;
}

.entry-categories a:hover {
    color: #d9037f;
}

/* Legacy post-meta for other pages */
.post-meta {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 30px;
    font-style: italic;
}

.post-meta .author {
    font-style: normal;
}

.post-meta a {
    color: #000;
}

.post-meta a:hover {
    color: #d9037f;
}

.post-excerpt {
    color: #666;
    margin-bottom: 15px;
}

/* Posts List */
.posts-list .post-preview {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.posts-list .post-preview:last-child {
    border-bottom: none;
}

.posts-list .post-image {
    margin-bottom: 20px;
}

.posts-list .post-title {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 10px;
}

.posts-list .post-title a {
    color: #333;
}

.posts-list .post-title a:hover {
    color: #e5554e;
}

.read-more {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    color: #d9037f;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.read-more:hover {
    color: #000;
    text-decoration: none;
}

/* Single Post */
.post-single .post-header {
    margin-bottom: 30px;
}

.post-single .post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    margin: 0 0 15px 0;
    color: #000;
    font-weight: 700;
}

.post-featured-image {
    margin-bottom: 40px;
}

.post-content {
    font-size: 2rem;
    line-height: 1.625;
    color: #000;
}

.post-content p {
    margin-bottom: 30px;
}

.post-content .read-more-link,
.post-content a[href*="Read more"] {
    color: #d9037f;
    font-style: italic;
}

.post-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 1.5em 0 0.8em;
    color: #000;
}

.post-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 1.3em 0 0.7em;
    color: #000;
}

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

.post-content img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
}

.post-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.post-content ul,
.post-content ol {
    margin: 1.5em 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 0.8em;
}

.post-content blockquote {
    border-left: none;
    padding-left: 40px;
    margin: 40px;
    font-style: italic;
    color: #999;
    position: relative;
}

.post-content blockquote::before {
    content: "\201C";
    font-size: 3rem;
    color: #999;
    position: absolute;
    left: 0;
    top: -10px;
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-tags .tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 15px;
    margin: 5px 5px 5px 0;
    border-radius: 3px;
    font-size: 0.85em;
    color: #666;
}

.post-tags .tag:hover {
    background: #e5554e;
    color: #fff;
}

/* Sidebar */
.sidebar {
    font-size: 1.8rem;
}

.widget {
    margin-bottom: 50px;
    padding: 0;
    background: transparent;
    border: none;
}

.widget h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
}

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

.about-widget h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.about-widget .author-photo {
    float: left;
    width: 115px;
    height: 115px;
    margin: 0 20px 10px 0;
    filter: grayscale(100%);
    object-fit: cover;
}

.about-widget .widget-content {
    font-size: 1.8rem;
    line-height: 1.625;
    text-align: left;
}

.about-widget .widget-content::after {
    content: "";
    display: table;
    clear: both;
}

.about-widget .widget-content p {
    margin-bottom: 0;
}

.about-widget .widget-content a {
    color: #d9037f;
}

.widget-list {
    list-style: none;
}

.widget-list li {
    padding: 8px 0;
    border-bottom: none;
}

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

.widget-list a {
    color: #d9037f;
    font-size: 1.8rem;
    line-height: 1.5;
}

.widget-list a:hover {
    color: #000;
    text-decoration: underline;
}

.widget-list .post-date {
    display: none;
}

.tag-cloud {
    line-height: 2;
}

.tag-cloud .tag {
    display: inline-block;
    background: #fff;
    padding: 5px 12px;
    margin: 3px;
    border-radius: 3px;
    font-size: 1.4rem;
    color: #000;
    border: 1px solid #ddd;
}

.tag-cloud .tag:hover {
    background: #d9037f;
    color: #fff;
    border-color: #d9037f;
    text-decoration: none;
}

/* Page Header */
.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

/* Welcome Section */
.welcome-section {
    background: #f9f9f9;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 3px;
    text-align: center;
}

/* Pagination */
.pagination {
    clear: both;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 0;
}

.pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span,
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 15px;
    background: #000;
    color: #fff;
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pagination a:hover,
.pagination .page-link:hover {
    background: #d9037f;
    color: #fff;
    text-decoration: none;
}

.pagination .page-item.active .page-link,
.pagination .active a,
.pagination .current {
    background: #d9037f;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    background: #000;
    color: #666;
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    background: #000;
}

/* Hide first/last arrows, only show prev/next */
.pagination li:first-child,
.pagination li:last-child {
    display: none;
}

.pagination li:nth-child(2),
.pagination li:nth-last-child(2) {
    display: inline-block;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
}

.footer-content p {
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-family: 'Poppins', sans-serif;
}

.social-links a:hover {
    color: #d9037f;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-single .post-title {
        font-size: 2em;
    }
    
    #content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .site-title h1 {
        font-size: 2em;
    }
    
    .post-card .post-title {
        font-size: 1.3em;
    }
    
    .post-single .post-title {
        font-size: 1.8em;
    }
}

