@font-face {
  font-family: 'Vogue Avant Garde';
  src: url('https://parenthoodnigeria.com/wp-content/themes/blankslate/public/fonts/vogue-avant-garde-book.otf') format('opentype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Vogue Avant Garde';
  src: url('https://parenthoodnigeria.com/wp-content/themes/blankslate/public/fonts/vogue-avant-garde-light.otf') format('opentype');
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: 'Vogue Avant Garde';
  src: url('https://parenthoodnigeria.com/wp-content/themes/blankslate/public/fonts/vogue-avant-garde-medium.otf') format('opentype');
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'Vogue Avant Garde';
  src: url('https://parenthoodnigeria.com/wp-content/themes/blankslate/public/fonts/vogue-avant-garde-bold.otf') format('opentype');
  font-weight: 600; /* Bold */
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vogue Avant Garde', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Top Banner */
.top-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.subscribe-btn {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    padding: 4px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #fff;
    color: #000;
}

.banner-text {
    font-size: 14px;
}

/* Header */
.header {
    border-bottom: 1px solid #e5e5e5;
	position: relative;
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 10px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-text {
    font-size: 14px;
    font-weight: 500;
}

.logo {position: absolute;left: 50%;transform: translateX(-50%);}

/* Main Navigation */
.main-nav {
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 9px 0;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Slide-out Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    background-color: #fff;
    z-index: 50;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.slide-menu.active {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    margin-bottom: 32px;
}

.close-text {
    font-size: 14px;
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-nav {
    padding: 0 24px;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.menu-section a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.menu-section a:hover {
    text-decoration: underline;
}

.menu-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.menu-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 24px 0;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background-color: #f8f8f8;
    padding: 48px 0;
}

.cta-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 24px;
}

.cta-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #333;
}

/* Main Content */
.main-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 16px;
    width: 100%;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.bottom-grid {
    margin-top: 100px;
}

.bottom-grid .left-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-image {
    position: relative;
    margin-bottom: 4px;
}

.article-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all .2s;
}

.hero-image .category-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.bookmark-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: #fff;
    padding: 8px;
    border-radius: 4px;
    display: none;
}

.bookmark {
    width: 16px;
    height: 16px;
    border: 1px solid #000;
}

.article-content {
    text-align: center;
    padding: 0 8px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-byline {
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Center Column */
.center-column {
    display: flex;
    flex-direction: column;
}

.hero-article {
    display: flex;
    flex-direction: column;
}

.hero-image {
    position: relative;
    margin-bottom: 24px;
}

.hero-image img {
    width: 100%;
    height: 840px;
    object-fit: cover;
    transition: all .2s;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-article {
    display: flex;
    flex-direction: column;
}

.left-column .category-tag {
    text-align: center;
    font-size: 14px;
    letter-spacing: 3px;
    color: #000;
    font-weight: 500;
    margin-top: 6px;
}

.category-tag {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    letter-spacing: 3px;
}

.sidebar-category {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.sidebar-content {
    display: flex;
    gap: 30px;
    flex-direction: row-reverse;
}

.sidebar-image {
    width: 75px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
    transition: all .2s;
}

.sidebar-text {
    flex: 1;
}

.hero-image a:hover img {
    opacity: 0.9;
}

.article-image a:hover img {
    opacity: 0.9;
}

.sidebar-content:hover img {
    opacity: 0.9!important;
}

.sidebar-title {
    font-family: 'Vogue Avant Garde', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 500;
}

.sidebar-byline {
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

article h1 {
    color: #000;
    font-size: 44px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 10px;
}

article {
    max-width: 1100px;
}

article header img {
    max-width: 900px;
    margin-top: 50px;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    margin-top: 64px;
}

a.logo img {
    max-width: 260px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px;
}



article .content img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

article .content .text-wrapper {
    max-width: 750px;
    margin: 0 auto;
    border-top: 1px solid #000;
    padding-top: 40px;
    margin-top: 40px;
}

article .content {
    margin-top: 50px;
}

article .content .text-wrapper h2,
article .content .text-wrapper h3,
article .content .text-wrapper h4,
article .content .text-wrapper h5 {
    line-height: 1.2;
    font-weight: 500;
}

article .content .text-wrapper h2 {
    margin-bottom: 20px;
    font-size: 28px;
    margin-top: 40px;
}

article .content .text-wrapper h3 {
    margin-bottom: 20px;
    font-size: 22px;
    margin-top: 30px; 
}
 
article .content .text-wrapper h4 {
    margin-bottom: 10px; 
    font-size: 18px;
    margin-top: 10px; 
}

article .content .text-wrapper h5 {
    margin-bottom: 10px;
    font-size: 16px;
    margin-top: 10px; 
}

article .content .text-wrapper ul li {
    list-style: initial;
}

article .content .text-wrapper section {
    border-top: 1px solid #000;
    padding-top: 30px;
    margin-top: 30px;
}

article .content .text-wrapper ul {
    padding: 20px;
}

article .content .text-wrapper ul p {
    margin-bottom: 20px;
}

article .content .text-wrapper p {
    margin-top: 10px;
}

article .content .text-wrapper blockquote {
    background: #f6f6f6;
    padding: 20px;
    margin: 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
}

.footer-logo img{max-width: 210px;}

.footer-description {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 32px;
}

.article-content > a,
.sidebar-text > a,
.hero-content > a {
    color: #000;
    text-decoration: none;
}

.article-content > a:hover,
.sidebar-text > a:hover,
.hero-content > a:hover {
    text-decoration: underline;
}



.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

.region-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #999;
}

.copyright {
    font-size: 12px;
    color: #666;
}

h1.entry-title {
    font-size: 3rem;
}

.items-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    margin-top: 50px;
}

.items-grid > article {
    width: 30%;
} 

.items-grid > article h2 {
    font-size: 1.5rem;
    margin-top: 15px;
}

.items-grid img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.category header.header {
    border: none;
}

a.post-grid-link {
    text-decoration: none;
    color: #000;
}

a.post-grid-link:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    
    .bottom-grid .left-column {
        grid-template-columns: 1fr;
    }
    
    .category h1.entry-title {
        font-size: 2.4rem;
    }

    .items-grid > article {
        width: 100%;
    } 
    
    .items-grid img {
        height: 300px;
    }

    article h1 {
        font-size: 30px;
    }

    body > header > div > div > div.header-right > button.icon-btn {
        display: none;
    }
    
    a.logo img {max-width: 170px;}
    
    .center-column {
        order: -1;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .header-top {
        padding: 12px 0;
    }
    
    .logo {
    top: 7px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .slide-menu {
        width: 280px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 24px 16px;
    }
    
    .left-column {
        gap: 32px;
    }
    
    .right-column {
        gap: 24px;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .article-image img {
        height: 200px;
    }
}
 