/* Blog Details Page Styles */
:root {
    --primary-color: #FF7043;
    --text-dark: #333333;
    --text-light: #666666;
    --background-color: #F8F9FA;
    --white: #FFFFFF;
}

body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Navigation Styles */
.top-nav {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
}

.back-button i {
    font-size: 18px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.view-offers-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.view-offers-btn i {
    font-size: 14px;
}

.action-icons {
    display: flex;
    gap: 4px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn i {
    font-size: 16px;
}

.icon-btn:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-color);
}

/* Blog Content Styles */
.blog-content {
    max-width: 800px;
    margin: 76px auto 2rem;
    padding: 0 1rem;
}

.blog-post {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-title {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
    padding: 24px 24px 20px;
    line-height: 1.35;
    font-weight: 600;
}

.blog-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-text {
    padding: 24px;
}

.blog-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-text h2 {
    color: var(--text-dark);
    font-size: 22px;
    margin: 28px 0 16px;
    font-weight: 600;
}

/* Share Section Styles */
.share-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.share-section h3 {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    position: relative;
    
}

.share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.email {
    background-color: #ea4335;
}

.share-btn i {
    font-size: 16px;
}

/* Contact Section */
.contact-us {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-us h2 {
    color: #333;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-nav {
        padding: 1rem;
    }

    .action-buttons {
        display: none;
    }

    .blog-content {
        padding: 1rem;
        margin-top: 70px;
    }

    .blog-title {
        font-size: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .blog-image {
        height: 250px;
    }

    .blog-text {
        padding: 1.5rem 1rem;
    }

    .blog-text p {
        font-size: 1rem;
    }

    .offers-btn span {
        display: none;
    }
}
