/* ========== BLOG STYLES — Adventure City Games ========== */
:root {
    --blog-red:    #F60B0E;
    --blog-dark:   #0a0a0a;
    --blog-text:   #181818;
    --blog-muted:  #666666;
    --blog-light:  #f8f8f8;
}

/* ===== LISTING HERO ===== */
.blog-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/ACG.jpg') center / cover;
    opacity: 0.07;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blog-red);
    margin-bottom: 16px;
}

.blog-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
}

.blog-hero-sub {
    font-family: 'Hind', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

@media (max-width: 576px) {
    .blog-hero { padding: 65px 0 45px; }
    .blog-hero h1 { font-size: 2rem; }
}

/* ===== LISTING GRID ===== */
.blog-listing {
    background: var(--blog-light);
    padding: 70px 0 90px;
}

.blog-section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 50px;
}

.blog-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 0 0 12px;
}

.blog-section-header p {
    font-family: 'Hind', sans-serif;
    font-size: 1rem;
    color: var(--blog-muted);
    line-height: 1.65;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ===== BLOG CARD ===== */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

/* ===== IMAGE PLACEHOLDERS ===== */
.blog-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #141414 0%, #222222 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 2px dashed rgba(246,11,14,0.25);
    box-sizing: border-box;
}

.blog-img-placeholder .ph-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    opacity: 0.55;
}

.blog-img-placeholder .ph-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.blog-img-placeholder .ph-desc {
    font-family: 'Hind', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.45;
    max-width: 260px;
}

/* Category badges */
.blog-card-category {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
    z-index: 1;
}

.cat-escape  { background: #F60B0E; }
.cat-friends { background: #7c3aed; }
.cat-team    { background: #0284c7; }
.cat-dates   { background: #d4237a; }
.cat-family  { background: #e07726; }
.cat-city    { background: #0d9488; }
.cat-party   { background: #16a34a; }
.cat-local   { background: #0891b2; }

/* Card body */
.blog-card-body {
    padding: 26px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Hind', sans-serif;
    font-size: 0.8rem;
    color: var(--blog-muted);
    margin-bottom: 11px;
}


.blog-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blog-text);
    line-height: 1.35;
    margin: 0 0 11px;
}

.blog-card-excerpt {
    font-family: 'Hind', sans-serif;
    font-size: 0.93rem;
    color: var(--blog-muted);
    line-height: 1.7;
    flex: 1;
    margin: 0 0 20px;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blog-red);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.blog-card-cta:hover { color: var(--blog-red); text-decoration: none; opacity: 0.75; }
.blog-card-cta i { font-size: 0.7rem; transition: transform 0.2s; }
.blog-card:hover .blog-card-cta i { transform: translateX(4px); }

/* ===== ARTICLE HERO ===== */
.article-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 90px 0 55px;
    position: relative;
    overflow: hidden;
}

.article-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.article-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.article-cat-badge {
    padding: 5px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
}

.article-read-time {
    font-family: 'Hind', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.article-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}


@media (max-width: 576px) {
    .article-hero h1 { font-size: 1.7rem; }
    .article-hero { padding: 65px 0 40px; }
}

/* ===== FEATURED IMAGE ===== */
.article-featured-img-wrap {
    max-width: 860px;
    margin: -35px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.article-featured-img-wrap .blog-img-placeholder,
.article-featured-img-wrap img {
    height: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    width: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 576px) {
    .article-featured-img-wrap .blog-img-placeholder,
    .article-featured-img-wrap img { height: 220px; }
    .article-featured-img-wrap { margin-top: -20px; }
}

/* ===== ARTICLE BODY ===== */
.article-body-section {
    padding: 60px 0 80px;
    background: #fff;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Hind', sans-serif;
    font-size: 1.05rem;
    line-height: 1.82;
    color: #333;
}

.article-body p { margin: 0 0 1.4em; }

.article-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 2.2em 0 0.75em;
    line-height: 1.25;
}

.article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blog-text);
    margin: 1.8em 0 0.5em;
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.4em;
    padding-left: 1.6em;
}

.article-body ul.itinerary {
    list-style: none;
    padding-left: 0;
}

.article-body li { margin-bottom: 0.5em; line-height: 1.7; }
.article-body strong { color: var(--blog-text); font-weight: 700; }

.article-body a {
    color: var(--blog-red);
    text-decoration: none;
    border-bottom: 1px solid rgba(246,11,14,0.25);
    transition: border-color 0.2s;
}

.article-body a:hover {
    border-bottom-color: var(--blog-red);
    color: var(--blog-red);
    text-decoration: none;
}

/* Pull Quote */
.article-pullquote {
    border-left: 4px solid var(--blog-red);
    margin: 2em 0;
    padding: 16px 22px;
    background: var(--blog-light);
    border-radius: 0 8px 8px 0;
}

.article-pullquote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blog-text);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Inline image placeholder */
.article-inline-img {
    margin: 2em 0;
}

.article-inline-img .blog-img-placeholder,
.article-inline-img img {
    height: 300px;
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.article-inline-img figcaption {
    font-family: 'Hind', sans-serif;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 38px 34px;
    margin: 2.5em 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blog-red), #c00);
}

.article-cta-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.article-cta-box p {
    font-family: 'Hind', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin: 0 0 24px;
    line-height: 1.6;
}

.article-body .article-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 2rem;
    background-color: #F60B0E;
    border: 2px solid #F60B0E;
    border-radius: 0.25rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.article-body .article-cta-btn:hover {
    background-color: #d3080a;
    border: 2px solid #c7070a;
    color: #fff;
    text-decoration: none;
}

/* Tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #eee;
}

.article-tag-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}

.article-tag {
    padding: 4px 11px;
    background: #f0f0f0;
    border-radius: 4px;
    font-family: 'Hind', sans-serif;
    font-size: 0.8rem;
    color: #555;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: none;
}

.article-tag:hover {
    background: #e0e0e0;
    color: #333;
    text-decoration: none;
    border-bottom: none;
}

/* ===== RELATED POSTS ===== */
.related-section {
    background: var(--blog-light);
    padding: 60px 0;
}

.related-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blog-text);
    margin: 0 0 32px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .related-grid { grid-template-columns: 1fr; gap: 14px; }
}

.related-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}

.related-card-img {
    height: 130px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-card-img .blog-img-placeholder,
.related-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none;
}

.related-card-body {
    padding: 14px 16px 18px;
}

.related-card-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.related-card-cat.cat-escape  { color: #F60B0E; }
.related-card-cat.cat-friends { color: #7c3aed; }
.related-card-cat.cat-team    { color: #0284c7; }
.related-card-cat.cat-dates   { color: #d4237a; }
.related-card-cat.cat-family  { color: #e07726; }
.related-card-cat.cat-city    { color: #0d9488; }
.related-card-cat.cat-party   { color: #16a34a; }
.related-card-cat.cat-local   { color: #0891b2; }

.related-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blog-text);
    line-height: 1.35;
    margin: 0;
}

/* Back to Blog */
.back-to-blog {
    text-align: center;
    padding: 30px 0 0;
}

.back-to-blog a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blog-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    border-bottom: none;
}

.back-to-blog a:hover {
    color: var(--blog-red);
    text-decoration: none;
    border-bottom: none;
}
