﻿
:root {
    --primary: #5D1143;
    --deep-purple: #902167;
    --soft-pink: #D190B9;
    --cream: #EEE2DA;
    --soft-blue: #8DA5B5;
    --dark: #1F3747;
    --gray: #6F6F70;
    --black: #0C0C0C;
    --white: #ffffff;
    --gold: #D4AF37;
    --card-glass: rgba(255, 255, 255, 0.85);
}

body {
    background: #ffffff;
    font-family: 'Fraunces', serif;
    color: var(--dark);
}

.hero-section {
    min-height: 35vh;
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.88)), url('../../assets/images/Noor/breadcum-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.breadcrumb-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
}

.breadcrumb-menu a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb-menu .active {
    color: var(--primary);
    font-weight: 600;
}

/* Blog Card – Glassmorphic & Premium */
.blog-card {
    background: var(--card-glass);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: all 0.4s ease;
    margin-bottom: 2.5rem;
}

    .blog-card:hover {
        transform: none;
        box-shadow: none;
    }

.blog-card-image {
    position: relative;
    overflow: hidden;
}

    .blog-card-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--deep-purple));
    color: white;
    padding: 12px 18px;
    border-radius: 18px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(93,17,67,0.3);
}

.date-day {
    font-size: 1.8rem;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--soft-blue);
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    margin: 12px 0;
    line-height: 1.3;
}

    .blog-card-title a {
        color: var(--primary);
        text-decoration: none;
        transition: color 0.3s;
    }

        .blog-card-title a:hover {
            color: var(--deep-purple);
        }

.blog-card-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card-read-more {
    color: var(--deep-purple);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

    .blog-card-read-more:hover {
        text-decoration: underline;
    }

/* Sidebar – Glass Style */
.sidebar {
    background: var(--cream);
    border-radius: 28px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

    .sidebar h4 {
        font-family: 'Playfair Display', serif;
        color: var(--primary);
        font-size: 1.6rem;
        position: relative;
        padding-bottom: 12px;
        margin-bottom: 1.5rem;
    }

        .sidebar h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--soft-pink));
            border-radius: 3px;
        }

.categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(93,17,67,0.15);
    transition: all 0.3s;
}

    .categories-list a:hover {
        color: var(--deep-purple);
        padding-left: 8px;
    }

.sidebar-blog-post {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(93,17,67,0.12);
}

    .sidebar-blog-post img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 16px;
    }

    .sidebar-blog-post h5 a {
        font-size: 1rem;
        color: var(--primary);
        text-decoration: none;
        line-height: 1.4;
    }

        .sidebar-blog-post h5 a:hover {
            color: var(--deep-purple);
        }

.popular-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .popular-tag li a {
        background: white;
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 0.9rem;
        text-decoration: none;
        border: 1.5px solid rgba(93,17,67,0.15);
        transition: all 0.3s;
    }

        .popular-tag li a:hover {
            background: linear-gradient(135deg, var(--primary), var(--deep-purple));
            color: white;
            transform: translateY(-3px);
        }

.pagination a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    font-weight: 600;
    color: var(--primary);
    background: white;
    border: 2px solid rgba(93,17,67,0.15);
    transition: all 0.3s;
}

    .pagination a.active, .pagination a:hover {
        background: linear-gradient(135deg, var(--primary), var(--deep-purple));
        color: white;
        border-color: transparent;
    }

@media (max-width: 992px) {
    .sidebar {
        margin-top: 3rem;
    }

    .page-title {
        font-size: 2.6rem;
    }
    .blog-card-content {
        padding: 1rem;
        font-size: small !important;
    }
}

.blog-card-image img {
    height:100% !important;
}
.w-100h-100 {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
}