/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: #faf8f6;
    color: #1e1e1e;
    line-height: 1.7;
}

.blog-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
    background: #ffffff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
}

/* ===== TOP BAR ===== */
.top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0e8e0;
    margin-bottom: 1.5rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a4a3c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.back-home i { font-size: 1.1rem; transition: transform 0.2s; }
.back-home:hover { color: #c0392b; }
.back-home:hover i { transform: translateX(-3px); }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.top-bar-right .resto-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e1e1e;
}
.top-bar-right .resto-name i { color: #c0392b; margin-right: 4px; }

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f0e8e0;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.map-link i { color: #c0392b; font-size: 0.9rem; }
.map-link:hover { background: #c0392b; color: #fff; }
.map-link:hover i { color: #fff; }

/* ===== HERO IMAGE ===== */
.hero-image {
    width: 100%;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    margin-top: 0.5rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hero-image img:hover { transform: scale(1.01); }

/* ===== BLOG HEADER ===== */
.blog-header {
    padding: 2rem 0 1.2rem;
    border-bottom: 2px solid #f0e8e0;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #7a6a5c;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.blog-meta span i { margin-right: 6px; color: #c0392b; }
.blog-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #1e1e1e;
}
.blog-subtitle {
    font-size: 1.15rem;
    color: #5a4a3c;
    margin-top: 0.6rem;
    font-weight: 400;
    border-left: 5px solid #c0392b;
    padding-left: 1.2rem;
    background: #fcf8f5;
    padding: 0.8rem 1.2rem;
    border-radius: 0 12px 12px 0;
}
.blog-subtitle i { color: #c0392b; margin-right: 6px; }

/* ===== BODY ===== */
.blog-body { padding: 2.2rem 0 1rem; }
.blog-body p {
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
    color: #2c2c2c;
}
.blog-body strong { color: #c0392b; font-weight: 700; }
.blog-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 0.8rem;
    color: #1e1e1e;
    border-bottom: 3px solid #f0e8e0;
    padding-bottom: 0.3rem;
}
.blog-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.8rem 0 0.5rem;
    color: #2c2c2c;
}
.blog-body ul {
    margin: 1.5rem 0 2rem 1.8rem;
    list-style: none;
}
.blog-body ul li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    padding-left: 0.5rem;
}
.blog-body ul li i {
    color: #c0392b;
    margin-right: 12px;
    width: 1.2rem;
    text-align: center;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
    background: #fff7f0;
    border-left: 8px solid #c0392b;
    padding: 1.5rem 2.5rem;
    margin: 2.2rem 0;
    border-radius: 0 16px 16px 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.pull-quote .quote-icon { color: #c0392b; font-size: 2rem; line-height: 1; flex-shrink: 0; }
.pull-quote .quote-text { flex: 1; }
.pull-quote .quote-text cite {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #7a6a5c;
    margin-top: 6px;
    font-style: normal;
}
.pull-quote .thumbs-up { font-size: 2.2rem; flex-shrink: 0; align-self: center; }

/* ===== VIDEO ===== */
.video-section { margin: 2.8rem 0; }
.video-section .video-label {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

/* ===== CTA ===== */
.cta-box {
    background: linear-gradient(145deg, #fcf8f5, #f5ede5);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    margin: 3rem 0 1rem;
    border: 1px solid #f0e8e0;
}
.cta-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cta-box p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
    color: #4a3a2c;
}
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.btn-cta {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 6px 18px rgba(192, 57, 43, 0.25);
}
.btn-cta i { margin-right: 10px; }
.btn-cta:hover { background: #a93226; transform: translateY(-2px); }
.btn-cta-outline {
    background: transparent;
    color: #c0392b;
    border: 2px solid #c0392b;
    box-shadow: none;
}
.btn-cta-outline:hover { background: #c0392b; color: #fff; }

/* ===== FAQ ===== */
.faq-section { margin: 2rem 0; }
.faq-item {
    border-bottom: 1px solid #f0e8e0;
    padding: 1rem 0;
}
.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1e1e1e;
}
.faq-item p {
    font-size: 1rem;
    color: #4a3a2c;
    margin: 0;
}

/* ===== FOOTER ===== */
.blog-footer {
    margin: 3rem 0 0;
    padding: 2.5rem 0 1.5rem;
    border-top: 2px solid #f0e8e0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}
.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e1e1e;
}
.footer-brand p {
    font-size: 0.9rem;
    color: #7a6a5c;
}
.footer-social a {
    color: #5a4a3c;
    font-size: 1.4rem;
    margin-left: 1.4rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}
.footer-social a:hover {
    color: #c0392b;
    transform: scale(1.1);
}
.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: #9a8a7c;
    padding-top: 1.5rem;
    width: 100%;
    border-top: 1px solid #f0e8e0;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .blog-container { padding: 1rem 1rem 0; }
    .top-bar { flex-direction: column; align-items: stretch; gap: 0.6rem; }
    .top-bar-right { flex-wrap: wrap; justify-content: flex-start; }
    .top-bar-right .resto-name { font-size: 0.9rem; }
    .map-link { font-size: 0.8rem; padding: 0.2rem 0.8rem; }
    .blog-title { font-size: 1.9rem; }
    .blog-subtitle { font-size: 1rem; padding: 0.6rem 1rem; }
    .blog-body p, .blog-body ul li { font-size: 1rem; }
    .pull-quote {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
        flex-wrap: wrap;
    }
    .pull-quote .thumbs-up { margin-left: 0; width: 100%; text-align: right; }
    .hero-image { border-radius: 18px 18px 0 0; }
    .cta-box { padding: 1.8rem 1.2rem; }
    .btn-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
    }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-social a { margin: 0 0.8rem; }
    .blog-body h2 { font-size: 1.5rem; }
  }
