:root {
    --primary-color: #ff4081;
    --secondary-color: #333;
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.heading_class{
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1f2937;
}
@media only screen and (max-width:767px) {
    .heading_class{
        font-size: 2rem;
    }
}
@media only screen and (max-width:400px) {
    .heading_class{
        font-size: 1.5rem;
    }
}
.post_description{
    font-family: Arial, sans-serif; /* Normal font */
    font-size: 16px; /* Optional */
    white-space: pre-wrap; /* Preserve line breaks and wrap long lines */
    word-wrap: break-word; /* Ensure words wrap if they're too long */
    overflow-wrap: break-word; /* Fallback for older browsers */
}
.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.featured-post {
    transition: transform 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.featured-post:hover {
    transform: translateY(-5px);
}

.featured-post img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
}

.sidebar-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.popular-posts img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.social-links a {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.trending-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.trend-card {
    border: none;
    transition: transform 0.3s;
}

.trend-card:hover {
    transform: translateY(-5px);
}

.editor-picks {
    padding: 60px 0;
}

.instagram-feed {
    padding: 40px 0;
    background: #fff;
}

.instagram-img {
    position: relative;
    overflow: hidden;
}

.instagram-img img {
    transition: transform 0.3s;
}

.instagram-img:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    .sidebar-section {
        margin-top: 30px;
    }
}