* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --accent-color: #FF6B9D;
    --accent-color: #cf2424;
    --accent-hover: #ff4081;
    --accent-hover: #cf2424;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(255, 107, 157, 0.15);
}

body.dark-mode {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --border-color: #2d2d2d;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(255, 107, 157, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s, color 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Header */
.header {
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    cursor: pointer;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--accent-color);
}
.foot-logo{
    color: white;
}
/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: transparent;
    border: 2px solid var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.dark-mode-toggle:hover {
    background: var(--accent-color);
    color: #fff;
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: all 0.3s;
}

body:not(.dark-mode) .moon-icon {
    opacity: 0;
    transform: rotate(180deg);
}

body.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

/* Mobile Dark Mode Toggle */
.mobile-dark-mode {
    display: none;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    z-index: 1002;
    transition: left 0.3s;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover {
    background: var(--accent-color);
    color: #fff;
}

.nav-icon {
    font-size: 20px;
}

.sidebar-footer {
    padding: 20px 25px;
    border-top: 2px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 30px 0;
    overflow: hidden;
    transition: background-color 0.3s;
}

.slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    padding: 5px 0;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-container:active {
    cursor: grabbing;
}

.slide {
    position: relative;
    min-width: 160px;
    width: 160px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: block;
}

.slide:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 107, 157, 0.95) 0%, rgba(255, 107, 157, 0.7) 40%, rgba(0,0,0,0.3) 70%, transparent 100%);
    background: linear-gradient(to top, #332d2d 0%, #383131 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    color: #fff;
    padding: 40px 12px 12px 12px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 25px;
}

.content-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-color);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1.5px;
}

.see-all {
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.see-all:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 18px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-title {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3436 0%, #1a1a1a 100%);
    color: #dfe6e9;
    padding: 50px 25px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #b2bec3;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b2bec3;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section p {
    font-size: 13px;
    color: #b2bec3;
    margin-bottom: 18px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.pinterest {
    background-color: #E60023;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #b2bec3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Show mobile menu button and hide desktop nav */
    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-dark-mode {
        display: block;
    }

    /* Adjust logo size on mobile */
    .logo {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .header-container {
        height: 60px;
        padding: 0 15px;
    }

    /* Card grid single column */
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer single column */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Adjust slider */
    .slide {
        min-width: 140px;
        width: 140px;
        height: 180px;
    }

    .slide-text {
        font-size: 10px;
        padding: 30px 10px 10px 10px;
    }

    /* Adjust sections */
    .section-title {
        font-size: 16px;
    }

    .main-content {
        padding: 30px 15px;
    }

    .slider-wrapper {
        padding: 0 15px;
    }

    /* Scroll to top button */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .see-all {
        font-size: 11px;
        padding: 6px 14px;
    }

    .card-title {
        font-size: 14px;
    }

    .slide {
        min-width: 130px;
        width: 130px;
        height: 170px;
    }
}


/* Add these styles to your existing styles.css file */

/* Breadcrumb */
.breadcrumb-container {
    background: var(--bg-secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb .separator {
    color: var(--text-secondary);
}

.breadcrumb .current {
    color: var(--text-primary);
}

/* Article Container */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 25px;
}

.article-wrapper {
    max-width: 100%;
}

/* Article Header */
.article-header {
    margin-bottom: 30px;
}

.article-category {
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.category-badge.bridal {
    background: linear-gradient(135deg, #FF6B9D 0%, #ff4081 100%);
    color: #fff;
}

.article-title {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-item svg {
    color: var(--accent-color);
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.share-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.pinterest {
    background-color: #E60023;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

/* Featured Image */
.featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 40px;
}

.article-content {
    max-width: 100%;
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.lead-paragraph {
    font-size: 20px !important;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 30px !important;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 20px 0;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px 0;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.article-content strong {
    font-weight: 600;
    color: var(--accent-color);
}

.article-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-secondary);
    border-radius: 8px;
}

.article-content blockquote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.article-content blockquote cite {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: normal;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 64, 129, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
}

.info-box-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-box-content h3 {
    font-size: 18px;
    margin: 0 0 10px 0 !important;
    color: var(--accent-color);
}

.info-box-content p {
    margin: 0 !important;
    font-size: 15px !important;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-secondary);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-post h4 {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--accent-color);
}

.category-list span {
    color: var(--text-secondary);
    font-size: 12px;
}

.ad-widget {
    background: var(--bg-secondary);
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
}

.ad-placeholder p {
    font-size: 14px;
    margin: 0;
}

.ad-placeholder span {
    font-size: 12px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.author-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social-link {
    font-size: 13px;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.author-social-link:hover {
    color: var(--accent-hover);
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.tag-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.tag {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

/* Related Articles */
.related-articles {
    background: var(--bg-secondary);
    padding: 50px 0;
    margin-top: 50px;
}

.related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.related-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.related-card h3 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.related-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Responsive Design for Article Page */
@media (max-width: 1024px) {
    .article-body {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }

    .article-content p,
    .article-content li {
        font-size: 16px;
    }

    .lead-paragraph {
        font-size: 18px !important;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .social-share {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: 20px 15px;
    }

    .article-title {
        font-size: 24px;
    }

    .breadcrumb {
        font-size: 12px;
    }
}


/* Trending Section - Image Text Overlay */
.trending-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.03) 0%, rgba(255, 64, 129, 0.03) 100%);
    padding: 50px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.overlay-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.overlay-card {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.overlay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: all 0.3s;
}

.overlay-card:hover::before {
    background: linear-gradient(to bottom, rgba(255, 107, 157, 0.3) 0%, rgba(255, 107, 157, 0.5) 50%, rgba(255, 107, 157, 0.9) 100%);
}

.overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.overlay-card:hover img {
    transform: scale(1.1);
}

.overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.overlay-badge {
    font-size: 32px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transform: scale(1);
    transition: transform 0.3s;
}

.overlay-card:hover .overlay-badge {
    transform: scale(1.2);
}

.overlay-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin: 0;
}

/* Responsive for Overlay Grid */
@media (max-width: 1024px) {
    .overlay-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .overlay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .overlay-card {
        height: 250px;
    }

    .overlay-title {
        font-size: 14px;
    }

    .overlay-badge {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .overlay-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .overlay-card {
        height: 200px;
    }

    .overlay-title {
        font-size: 13px;
    }

    .overlay-badge {
        font-size: 24px;
    }

    .overlay-content {
        padding: 15px;
    }
}


/* SEO Content Section */
.seo-content-section {
    background: var(--bg-primary);
    padding: 60px 0;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.seo-content {
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.seo-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.seo-card {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.seo-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.seo-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.seo-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.seo-list {
    margin: 15px 0;
    padding-left: 25px;
}

.seo-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.seo-list li strong {
    color: var(--accent-color);
    font-weight: 600;
}

.seo-cta {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(255, 64, 129, 0.08) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid var(--accent-color);
}

.seo-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.seo-cta p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-keywords {
    text-align: center;
}

.seo-keywords h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.keyword-tags span {
    padding: 10px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s;
    cursor: pointer;
}

.keyword-tags span:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .seo-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .seo-content-section {
        padding: 40px 0;
    }

    .seo-content {
        padding: 30px 20px;
    }

    .seo-main-title {
        font-size: 26px;
    }

    .seo-intro {
        font-size: 15px;
    }

    .seo-card {
        padding: 25px 20px;
    }

    .seo-card h3 {
        font-size: 20px;
    }

    .seo-cta {
        padding: 30px 20px;
    }

    .seo-cta h3 {
        font-size: 24px;
    }

    .keyword-tags span {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .seo-main-title {
        font-size: 22px;
    }

    .seo-intro {
        font-size: 14px;
    }

    .seo-card h3 {
        font-size: 18px;
    }

    .seo-card p,
    .seo-list li {
        font-size: 14px;
    }

    .keyword-tags span {
        font-size: 12px;
        padding: 7px 14px;
    }
}
