/* Link in Bio Page Styles */

/* Hide global site footer on this page */
footer.footer {
    display: none !important;
}

:root {
    --color-primary: #1696D2;
    --color-secondary: #FDBF11;
    --color-tertiary: #EC008B;
    --color-text: #000000;
    --color-text-muted: #666666;
    --color-bg: #FFFFFF;
    --color-card-bg: #FFFFFF;
    --color-card-border: #EEEEEE;
    --color-card-shadow: rgba(0, 0, 0, 0.08);
    --font-family-base: 'Open Sans', sans-serif;
    --font-family-headings: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-family-base);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Layout Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* Site Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-card-border);
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 40px;
    height: auto;
}

.header-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.header-link:hover {
    background-color: var(--color-text);
    color: white !important;
}

.filter-bar {
    text-align: center;
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: var(--color-black);
    font-weight: 500;
}

/* Post Grid */
#post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 600px) {
    #post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    #post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    display: block;
    background: var(--color-card-bg);
    transition: transform 0.2s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.card-img-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f9f9f9;
    overflow: hidden;
    border-radius: 4px;
    /* Slight rounding for a premium feel */
    box-shadow: 0 4px 12px var(--color-card-shadow);
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Empty State */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--color-text-muted);
}


