/* Inherit main font and color scheme */
.blog-container {
    font-family: 'Akwe Pro', sans-serif;
    font-weight: 200;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    clear: both;
    padding-top: 40px; /* Reduced from 80px */
    margin-top: 0;
}

/* Post page specific layout */
.blog-post-page .blog-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Blog index page specific layout */
.blog-index-page .blog-container {
    max-width: 1400px;
}

/* Navigation logo styling - Enhanced visibility */
.nav-logo {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5)); /* Add subtle glow to logo */
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Mobile-specific logo adjustments */
@media (max-width: 768px) {
    .nav-logo {
        width: 80px;
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.6)); /* Enhanced glow on mobile */
    }
}

/* Blog Main Content */
.blog-main {
    width: 100%;
    color: #ffffff;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-post-card {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px); /* Optional: adds a slight blur effect to the background */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s;
    max-width: 400px;
}

.blog-post-card:hover {
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.8);
}

.post-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.post-card-content {
    padding: 15px;
}

.post-title {
    font-family: 'Akwe Pro', sans-serif;
    font-weight: 500;
    font-size: clamp(16px, 3vw, 24px);
    margin-top: 0;
    margin-bottom: 8px;
    color: #ffffff;
}

.post-excerpt {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Individual Blog Post Styles */
.blog-post {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 40px;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.post-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
}

.post-content {
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.8;
}

.post-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Tags styling */
.post-tags {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.post-tags span {
    color: #ffffff;
    font-family: 'Akwe Pro', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
    width: 100%;
}

.post-tags a {
    display: inline-block;
    padding: 2px 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sidebar Styles */
.blog-sidebar {
    display: none;
}

.blog-post-page .blog-sidebar {
    display: block;
}

/* Display sidebar on blog index page with proper spacing */
.blog-index-page .blog-sidebar {
    display: block;
    margin-top: 50px;
}

/* Clean up sidebar section spacing */
.blog-sidebar {
    display: none;
}

.blog-post-page .blog-sidebar {
    display: block;
}

/* Remove all conflicting margin rules and establish a single source of truth */
.sidebar-section {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px !important; /* Use !important to override any conflicting styles */
}

.sidebar-section:last-child {
    margin-bottom: 0 !important;
}

/* Remove any other margin declarations */
.sidebar-section.post-tags,
.sidebar-section.categories,
.sidebar-section.recent-posts {
    margin: 0 0 40px 0 !important;
}

.sidebar-section h3 {
    color: #ffffff;
    font-family: 'Akwe Pro', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 15px;
}

/* Tags styling */
.sidebar-section.post-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-section.post-tags a {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.sidebar-section.post-tags a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Categories styling */
.sidebar-section.categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section.categories li {
    margin-bottom: 10px;
}

.sidebar-section.categories li:last-child {
    margin-bottom: 0;
}

.sidebar-section.categories a {
    display: block;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sidebar-section.categories a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Recent posts styling */
.sidebar-section.recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section.recent-posts li {
    margin-bottom: 15px;
}

.sidebar-section.recent-posts li:last-child {
    margin-bottom: 0;
}

.sidebar-section.recent-posts a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sidebar-section.recent-posts a:hover {
    color: #f4b8d9;
}

.sidebar-section.recent-posts .post-date {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .sidebar-section {
        margin-bottom: 30px !important;
    }
    
    .sidebar-section.post-tags,
    .sidebar-section.categories,
    .sidebar-section.recent-posts {
        margin: 0 0 30px 0 !important;
    }

    .sidebar-section.post-tags a,
    .sidebar-section.categories a {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination button {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.share-button {
    padding: 10px 20px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

/* Blog Footer */
.blog-footer {
    position: relative;
    z-index: 1001;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(34, 34, 34, 0.9);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    color: #ffffff;
    font-family: 'Akwe Pro', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.footer-center p {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Media Queries */
@media (max-width: 1024px) {
    .blog-container {
        padding: 80px 20px 20px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 80px 15px 15px;
    }
    
    .posts-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        gap: 25px;
    }
}

/* Add this to ensure the footer stays at the bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Update post-tags styling to match sidebar sections */
.post-tags.sidebar-section {
    margin: 0;
}

.post-tags.sidebar-section a {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 5px;
}

/* Update sidebar styles for sticky behavior */
.blog-sidebar {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0; /* Remove gap since we're using margin */
}

/* Remove scrollbar styles since we don't need them anymore */
.blog-sidebar::-webkit-scrollbar,
.blog-sidebar::-webkit-scrollbar-track,
.blog-sidebar::-webkit-scrollbar-thumb {
    display: none;
}

@media (max-width: 768px) {
    .sidebar-section {
        margin-bottom: 30px !important;
    }
    
    .sidebar-section.post-tags,
    .sidebar-section.categories,
    .sidebar-section.recent-posts {
        margin: 0 0 30px 0 !important;
    }
}

/* Update post-tags styling */
.sidebar-section.post-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-section.post-tags h3 {
    margin-bottom: 15px;
    width: 100%;
}

.sidebar-section.post-tags a {
    display: inline-block;
    padding: 6px 15px;
    background-color: rgba(244, 184, 217, 0.15);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0;
}

.sidebar-section.post-tags a:hover {
    background-color: rgba(244, 184, 217, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Media queries update */
@media (max-width: 1024px) {
    .blog-sidebar {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
}

/* Remove any conflicting styles */
.background-container {
    min-height: 100vh;
    position: relative;
    overflow: visible;
}

/* Ensure categories and recent posts sections also have no margins */
.sidebar-section.categories,
.sidebar-section.recent-posts {
    margin: 0;
}

/* Global link styles for blog content */
.blog-main a {
    color: #f4b8d9; /* Soft pink for normal state */
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-main a:hover {
    color: #ffd6eb; /* Lighter pink on hover */
    text-decoration: underline;
}

/* Specific link styles for the main content area */
.post-content a {
    color: #f4b8d9;
    text-decoration: none;
    border-bottom: 1px solid rgba(244, 184, 217, 0.3);
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #ffd6eb;
    border-bottom-color: #ffd6eb;
}

/* Keep the existing sidebar link styles */
.sidebar-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.sidebar-section a:hover {
    color: #f4b8d9;
}

/* Add new image container styles */
.post-image-container {
    margin: 30px 0;
}

.post-image-container figcaption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.filter-title {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 24px;
}

.no-posts {
    color: #ffffff;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

/* Blog header styles */
.blog-header {
    text-align: center;
    margin-bottom: 30px; /* Reduced from 40px */
    color: #ffffff;
}

.blog-header h1 {
    font-size: 48px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.blog-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    max-width: 600px;
    font-weight: 200;
}

/* Make post thumbnail clickable */
.post-thumbnail-link {
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.post-thumbnail-link:hover .post-thumbnail {
    transform: scale(1.05);
}

.post-thumbnail {
    transition: transform 0.3s ease;
}

/* Add main header and logo styles */
.main-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px 40px;
    box-sizing: border-box;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Media queries */
@media (max-width: 768px) {
    .main-header {
        padding: 40px 20px 20px 20px;
    }

    .logo {
        width: 200px;
    }

    .blog-header h1 {
        font-size: 36px;
    }

    .blog-header p {
        font-size: 16px;
        color: #000000;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 30px 15px 15px 15px;
    }

    .logo {
        width: 160px;
    }

    .blog-header h1 {
        font-size: 28px;
    }

    .blog-header p {
        font-size: 14px;
        color: #000000;
    }
}

/* Add WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 1s;
    transition: bottom 0.3s ease;
}

.whatsapp-widget.footer-visible {
    bottom: 100px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-widget.footer-visible {
        bottom: 80px;
    }
}

/* Post Logo Styles */
.post-logo {
    margin-bottom: 20px;
    text-align: center;
}

.post-logo-image {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.post-logo-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .post-logo-image {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .post-logo-image {
        width: 100px;
    }
}

/* Remove duplicate navbar styles from here */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: none;
}

.nav-logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #f4b8d9;
}

.nav-links a.active {
    color: #f4b8d9;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.blog-container {
    margin-top: 90px;
}

.main-header, .post-logo {
    margin-top: 70px;
}

@media (max-width: 768px) {
    .nav-header {
        padding: 10px 20px;
    }
    
    .nav-logo {
        width: 80px;
    }
    
    .menu-button {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        flex-direction: column;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        gap: 15px;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        visibility: hidden;
    }
    
    .nav-links.active {
        max-height: 100vh;
        visibility: visible;
    }
}
/* End of duplicate navbar styles to be removed */

/* CSS Variables for Social Media Links */
:root {
    --linkedin-url: 'https://www.linkedin.com/in/anastasialedneva/';
    --facebook-url: 'https://www.facebook.com/aa.ledneva';
    --instagram-url: 'https://www.instagram.com/media.chee';
}

.sidebar-section.post-tags a,
.sidebar-section.categories li a {
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

@media (max-width: 768px) {
    .sidebar-section.post-tags a,
    .sidebar-section.categories li a {
        padding: 8px 12px;
        margin-bottom: 6px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }

    .sidebar-section.categories ul {
        margin: 0;
        padding: 0;
    }

    .sidebar-section.categories li {
        margin-bottom: 6px;
    }

    .sidebar-section {
        margin-bottom: 20px;
    }
}

/* Sidebar section styles for post pages */
.blog-post .sidebar-section.post-tags a,
.blog-post .sidebar-section.categories li a {
    padding: 6px 12px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.2;
}

.blog-post .sidebar-section.categories ul {
    margin: 0;
    padding: 0;
}

.blog-post .sidebar-section.categories li {
    margin-bottom: 4px;
}

.blog-post .sidebar-section {
    margin-bottom: 15px;
}

.blog-post .sidebar-section h3 {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .blog-post .sidebar-section.post-tags a,
    .blog-post .sidebar-section.categories li a {
        padding: 4px 10px;
        margin-bottom: 3px;
    }

    .blog-post .sidebar-section.categories li {
        margin-bottom: 3px;
    }

    .blog-post .sidebar-section {
        margin-bottom: 12px;
    }
}

@media (max-width: 1200px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-post-card {
        max-width: 100%;
    }
}

.blog-post-card .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 12px;
}

.blog-post-card .post-tags a {
    font-size: 11px;
    padding: 2px 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-post-card .post-tags a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Remove the old transform scale styles */
.blog-post-card .post-tags {
    transform: none;
    transform-origin: unset;
    margin: 15px 0 0 0;
}

@media (max-width: 768px) {
    .posts-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .posts-grid {
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .blog-post-page .blog-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .blog-container {
        padding: 80px 15px 15px;
    }
}

.blog-post-page .sidebar-section.post-tags a {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 3px;
}

.blog-post-page .sidebar-section.categories li a {
    font-size: 12px;
    padding: 4px 10px;
    margin-bottom: 3px;
}

/* Ensure categories list items don't overlap */
.sidebar-section.categories ul {
    margin: 0;
    padding: 0;
}

.sidebar-section.categories li {
    margin-bottom: 10px; /* Add space between category items */
}

.sidebar-section.categories li:last-child {
    margin-bottom: 0; /* Remove margin from last item */
}

@media (max-width: 768px) {
    .sidebar-section {
        margin-bottom: 20px; /* Slightly less spacing on mobile */
    }
    
    .sidebar-section.categories li {
        margin-bottom: 8px;
    }
}

/* Dropdown Menu Styles for Blog Navigation */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.dropdown-trigger::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger::after {
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-trigger {
    color: #f4b8d9;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95em;
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f4b8d9;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        min-width: auto;
        padding: 0;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 8px 0;
        text-align: center;
    }
    
    .dropdown-trigger {
        justify-content: center;
    }
}
/* Specific Flex Layout for Blog Pages */
.blog-page { /* Apply flex layout directly to blog page body */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.blog-page .background-container { /* Ensure background container grows */
    flex-grow: 1;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-icons {
        justify-content: center;
    }
}
