body, html {
    height: auto;
    min-height: 100%;
    margin: 0;
    font-family: 'Prosto One', cursive;
}


.bg-image {
    background-image: url('assets/images/background.jpg');
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Optional overlay to improve text readability if image is too bright */
.overlay {
    background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
    height: 100%;
    width: 100%;
}

.logo {
    max-width: 200px; /* Adjust based on actual logo size */
    height: auto;
}

.hindi-quote {
    font-family: 'Prosto One', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.author-name {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.follow-text {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.social-link {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-link:hover {
    color: white; /* Or a brand color like #1877F2 for FB, #E4405F for Insta */
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hindi-quote {
        font-size: 1.8rem;
    }
    
    .author-name {
        font-size: 1rem;
    }

    .logo {
        max-width: 150px;
    }
}

/* Blogs Page Styles */
.blogs-page {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.title-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333; /* Reset text color for card content */
    border-radius: 12px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .card-img-top {
    transform: scale(1.05); /* Zoom effect on hover */
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-link-sm {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}


.social-link-sm:hover {
    color: #ccc;
}

/* Article Page Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif; /* Use Poppins for better readability on long text */
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-body h2, .article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 20px;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.article-body pre {
    background: #2d2d2d;
    color: #f8f8f2;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}


