:root {
    --primary: #d4a76a;
    --primary-dark: #b8864c;
    --secondary: #8c6d46;
    --dark: #2c2c2c;
    --light: #f8f4ee;
    --accent: #c44536;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    padding-top: 80px;
}


/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    font-weight: 400;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.menu-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
    background: white;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.menu-card-body {
    padding: 20px;
}

.menu-card-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.price-badge {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Pricing Tiers */
.pricing-tiers {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.pricing-tier {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 300px;
}

.pricing-tier:hover,
.pricing-tier.active {
    border-color: var(--primary);
    background: rgba(212, 167, 106, 0.1);
}

.tier-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.tier-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.tier-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Cart Button */
.cart-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1045;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.cart-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Mobile responsive cart button */
@media (max-width: 768px) {
    .cart-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
    }
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background: var(--primary);
    color: white;
    border-bottom: none;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}


.offcanvas-header {
    background: var(--primary);
    color: white;
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.remove-item {
    color: #dc3545;
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

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

.social-icon:hover {
    color: var(--primary);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

/* Chef Profile */
.chef-profile {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.chef-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.chef-info {
    padding: 30px;
}

.chef-name {
    color: var(--primary);
    margin-bottom: 20px;
}

/* Video Modal */
.video-modal .modal-content {
    background: transparent;
    border: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .pricing-tiers {
        flex-direction: column;
    }

    .pricing-tier {
        margin: 5px 0;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(212, 167, 106, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-img img {
    border: 4px solid var(--primary);
    object-fit: cover;
    transition: transform 0.3s;
}

.testimonial-card:hover .testimonial-img img {
    transform: scale(1.05);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-name {
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-title {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-rating {
    margin-top: 10px;
}

.testimonial-rating i {
    font-size: 1.1rem;
    margin: 0 1px;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 167, 106, 0.25);
}

.contact-form-card .btn-primary {
    background: var(--primary);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-form-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 167, 106, 0.4);
}

/* Dynamic form fields */
.dynamic-field {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Carousel Styles */
.testimonial-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-slide .row {
    margin-left: -15px;
    /* Adjust for card padding */
    margin-right: -15px;
    /* Adjust for card padding */
}

.testimonial-slide .col-lg-4,
.testimonial-slide .col-md-6 {
    padding-left: 15px;
    /* Adjust for card padding */
    padding-right: 15px;
    /* Adjust for card padding */
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.testimonial-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.testimonial-nav-btn.prev-btn {
    left: -25px;
}

.testimonial-nav-btn.next-btn {
    right: -25px;
}

.testimonial-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.testimonial-indicators .indicator {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-indicators .indicator.active {
    background-color: var(--primary);
}

/* Blog Page CSS */
.blog-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 50px;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.blog-categories {
    margin-bottom: 50px;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 167, 106, 0.3);
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    background: white;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.blog-meta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-meta-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-tags {
    margin-bottom: 15px;
}

.blog-tag {
    background: var(--light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 5px;
    display: inline-block;
}

.read-more-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.sidebar {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.popular-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.popular-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.popular-post-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.popular-post-title {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-post-date {
    font-size: 0.8rem;
    color: #888;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud .blog-tag {
    margin: 0;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 50px 0;
    margin: 50px 0;
}

.newsletter-content {
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #a03a2e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}


.featured-image {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1563379926898-05f4575a45d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.featured-content {
    max-width: 800px;
    padding: 0 20px;
}

.featured-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}


.article-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin: -50px 0 30px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-tags {
    display: flex;
    gap: 10px;
}

.article-tag {
    background: var(--light);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-text {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

.article-text h2 {
    color: var(--primary);
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.article-text h3 {
    color: var(--dark);
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text ul,
.article-text ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 8px;
}

.highlight-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}


.recipe-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.recipe-box h3 {
    color: white;
    margin-bottom: 20px;
}

.recipe-ingredients {
    margin-bottom: 20px;
}

.recipe-ingredients h4 {
    color: white;
    margin-bottom: 15px;
}

.recipe-ingredients ul {
    list-style: none;
    padding: 0;
}

.recipe-ingredients li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.recipe-ingredients li:last-child {
    border-bottom: none;
}


.comments-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comments-title {
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.comment {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.comment:last-child {
    border-bottom: none;
}

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

.comment-author {
    font-weight: 600;
    color: var(--primary);
}

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

.comment-text {
    line-height: 1.6;
    color: #444;
}

.comment-text p {
    margin-bottom: 0;
}

/* Comment Form Improvements */
.comment-form {
    background: var(--light);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(212, 167, 106, 0.2);
}

.comment-form h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.comment-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.comment-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 167, 106, 0.25);
}

.comment-form .btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.comment-form .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 167, 106, 0.4);
}

/* Newsletter Form Improvements */
.sidebar form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.sidebar form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 167, 106, 0.25);
}

.sidebar form .btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.sidebar form .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Related Posts Improvements */
.related-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.related-post:hover {
    background-color: rgba(212, 167, 106, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 0 -15px 20px -15px;
}

.related-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-post-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.related-post-title {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

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

/* Alert Improvements */
.alert {
    border-radius: 10px;
    border: none;
}

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

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .featured-content h1 {
        font-size: 2.5rem;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    
    .comment-form {
        padding: 20px;
    }
    
    .social-share {
        justify-content: center;
        margin-top: 15px;
    }
}