/* ==========================================================================
   Curry Express - Cuisine Guide Page Styling
   Theme: Warm Terracotta (#E05A36), Warm Cream (#FAF6F0), Dark Brown (#2B1E19)
   ========================================================================== */

.ce-guide-section {
    padding: 60px 0;
    color: #333333;
}

.ce-guide-section.bg-light {
    background-color: #FAF6F0;
}

.ce-guide-section h2 {
    color: #2B1E19;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.ce-guide-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 16px;
}

/* Grids */
.ce-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.ce-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.ce-card {
    background: #ffffff;
    border: 1px solid #eae0d5;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ce-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.ce-card h3 {
    color: #E05A36;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ce-card.highlight-card {
    border-top: 4px solid #E05A36;
}

/* Spice Pills & List Tags */
.ce-spice-pills, .ce-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.ce-spice-pills span, .ce-list-tags span {
    background: #ffffff;
    color: #2B1E19;
    border: 1px solid #E05A36;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.ce-list-tags span {
    background: #E05A36;
    color: #ffffff;
    border: none;
}

/* Beginner Guide List & Combo */
.ce-guide-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.ce-guide-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5dcd3;
    font-size: 1rem;
}

.ce-starter-combo {
    background: #ffffff;
    border-left: 4px solid #E05A36;
    padding: 16px 20px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

/* CTA Box & Buttons */
.ce-cta-box {
    margin-top: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ce-btn-primary {
    background-color: #E05A36;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.ce-btn-primary:hover {
    background-color: #c44726;
}

.ce-btn-accent {
    background-color: #2B1E19;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.ce-guide-cta-banner {
    background-color: #2B1E19;
    color: #ffffff;
    padding: 50px 20px;
}

.ce-guide-cta-banner h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.ce-guide-cta-banner p {
    color: #d1c7bd;
    margin-bottom: 24px;
}

.ce-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* FAQ Accordion Styling */
.ce-faq-wrapper {
    max-width: 900px;
    margin: 30px auto 0;
}

.ce-faq-item {
    background: #ffffff;
    border: 1px solid #eae0d5;
    border-radius: 6px;
    margin-bottom: 12px;
    padding: 16px 20px;
}

.ce-faq-item summary {
    font-weight: 600;
    font-size: 1.05rem;
    color: #2B1E19;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ce-faq-item summary::-webkit-details-marker {
    display: none;
}

.ce-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #E05A36;
    font-weight: 400;
}

.ce-faq-item[open] summary::after {
    content: '−';
}

.ce-faq-item p {
    margin-top: 12px;
    margin-bottom: 0;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .ce-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ce-grid-2, .ce-grid-3 {
        grid-template-columns: 1fr;
    }
    .ce-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .ce-guide-section {
        padding: 40px 0;
    }
}

/* blogs */

.blog-section-container {
    background-color: #ffffff;
    color: #000;
    padding: 100px 20px;
    min-height: 400px;
}

.blog-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header-box .sub-badge {
    color: #439A1A;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-header-box .main-blog-title {
    font-size: 2.5rem;
    margin: 10px 0;
    font-weight: 400;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: #439A1A;
    margin: 0 auto;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #30030300;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #439A1A;
}

.blog-card-img-holder {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #222;
}

.blog-card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-holder img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #aaaaaa;
    margin-bottom: 12px;
}

.blog-card-meta-line .category {
    color: #439A1A;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-title {
    font-size: 1.25rem;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-weight: 200;
    color: #fff;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
    font-size: 0.85rem;
}

.read-more-link {
    color: #439A1A;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.4s ease forwards;
}

.hidden {
    display: none !important;
}

.back-to-blogs-btn {
    background: transparent;
    border: 1px solid #2a2a2a;
    color: #000000;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.back-to-blogs-btn:hover {
    background-color: #439A1A;
    border-color: #439A1A;
    color: #fff;
}

.article-header {
    margin-bottom: 25px;
}

.article-category {
    color: #439A1A;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.8rem;
    margin: 15px 0;
    line-height: 1.2;
}

.article-meta {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.article-hero-image-wrapper {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 40px;
}

.article-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 300;
    border-left: 4px solid #439A1A;
    padding-left: 20px;
}

.article-body-inline-image-box {
    margin: 40px 0;
    border: 1px solid #2a2a2a;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 4px;
}

.article-body-inline-image-box img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 2px;
}

.article-body-inline-image-box .image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaaaaa;
    font-style: italic;
    text-align: center;
}

#view-body-extended p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1e1c1c;
    margin-bottom: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
