/* body{
    font-family: 'Cinzel', serif;
} */

/* Blog Detail Specific Styles */
.blog-detail {
    margin-top: 80px; /* Account for fixed navbar */
}

/* .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #2c2c2c;
    backdrop-filter: blur(15px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: #4c4c4c;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
} */

/* Blog Hero Section */
.blog-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(215, 181, 109, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--light-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.7;
}

.blog-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.blog-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.95;
}

.meta-item i {
    color: var(--primary-gold);
}

/* Content Section */
.blog-content-section {
    padding: 6rem 5%;
    background: var(--light-gray);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.col-lg-8 {
    grid-column: 1;
}

.col-lg-4 {
    grid-column: 2;
}

/* Post Content */
.post-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px var(--shadow);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.post-content h1 {
    font-size: 2.5rem;
}

.post-content h2 {
    font-size: 2rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #555;
}

.post-content blockquote {
    background: var(--light-gray);
    border-left: 5px solid var(--primary-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 15px 15px 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Post Tags */
.post-tags {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 2rem;
}

.post-tags h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.2rem;
}

.post-tags .tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--dark);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.post-tags .tag:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.05);
}

/* Social Share */
.social-share {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 2rem;
}

.social-share h4 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Author Bio */
.author-bio {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.author-info p {
    color: #666;
    margin: 0;
}

/* Comments Section */
.comments-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px var(--shadow);
}

.comments-section h3 {
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.comments-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Comment Form */
.comment-form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.comment-form-section h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    /* font-family: inherit; */
    transition: all 0.3s ease;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(215, 181, 109, 0.3);
}

.submit-btn {
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(215, 181, 109, 0.5);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.comment:hover {
    background: rgba(215, 181, 109, 0.1);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    color: var(--dark);
    margin: 0;
    font-size: 1.1rem;
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-sidebar .sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.blog-sidebar .widget-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
}

.blog-sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-post:hover {
    background: rgba(215, 181, 109, 0.1);
    transform: scale(1.02);
}

.related-post-image {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.related-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--dark);
}

.related-post-date {
    font-size: 0.8rem;
    color: #666;
}

/* Newsletter Widget in Sidebar */
.blog-sidebar .newsletter-widget {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.blog-sidebar .newsletter-widget .widget-title {
    color: white;
}

.blog-sidebar .newsletter-widget .widget-title::after {
    background: white;
}

.blog-sidebar .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-sidebar .newsletter-input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.blog-sidebar .newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.blog-sidebar .newsletter-btn {
    padding: 15px 30px;
    background: white;
    color: var(--primary-gold);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-sidebar .newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Widget */
.contact-widget {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.contact-widget .widget-title {
    color: white;
}

.contact-widget .widget-title::after {
    background: white;
}

.contact-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-gold);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-hero {
        height: 60vh;
    }

    /* .nav-links{
        background-color: #4c4c4c;
    } */

    .blog-title {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .post-content {
        padding: 2rem 1.5rem;
    }

    .post-content h1 {
        font-size: 2rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        justify-content: center;
    }

    .comments-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-content-section {
        padding: 4rem 3%;
    }

    .post-content {
        padding: 1.5rem 1rem;
    }

    .comments-section {
        padding: 1.5rem 1rem;
    }

    .comment {
        padding: 1rem;
    }

    .form-control {
        padding: 12px 15px;
    }
}