/*
Theme Name: Hello Elementor Child
Theme URI: https://muralhex.com
Description: Custom child theme for Muralhex website.
Author: Antigravity
Author URI: https://muralhex.com
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Core Styling variables */
:root {
    --mh-color-bg: #000000;
    --mh-color-surface: #0a0a0a;
    --mh-color-surface-hover: #121212;
    --mh-color-text: #F2EFE8; /* Warm Off-White */
    --mh-color-text-muted: #999999;
    --mh-color-gold: #B89A5A; /* Muted Gold */
    --mh-color-gold-hover: #a38548;
    --mh-color-white: #ffffff;
    --mh-font-title: 'Cormorant Garamond', serif;
    --mh-font-body: 'Inter', sans-serif;
}

/* Base Body settings - Font Size elegant 16px (desktop) / 15px (mobile) */
body,
.elementor-text-editor {
    background-color: var(--mh-color-bg) !important;
    color: var(--mh-color-text) !important;
    font-family: var(--mh-font-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 0;
    padding: 0;
    padding-top: 80px !important; /* Offset for fixed header */
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    body,
    .elementor-text-editor {
        font-size: 15px !important;
    }
}

.muralhex-project-single,
.muralhex-projects-archive {
    background-color: var(--mh-color-bg);
    color: var(--mh-color-text);
    font-family: var(--mh-font-body);
}

/* Typography Headings Rules - Dynamic clamp-based sizing */
h1, h2, .h1, .h2 {
    font-family: var(--mh-font-title) !important;
    font-weight: 600 !important;
    color: var(--mh-color-gold) !important; /* Default H1/H2 to Muted Gold */
    line-height: 1.2;
    letter-spacing: 0.5px;
}

h1, .h1 {
    font-size: clamp(38px, 6vw, 68px) !important;
}

h2, .h2 {
    font-size: clamp(28px, 4.5vw, 44px) !important;
}

h3, h4, .h3, .h4 {
    font-family: var(--mh-font-title) !important;
    font-weight: 500 !important;
    color: var(--mh-color-gold) !important; /* Default H3 to Muted Gold */
    line-height: 1.3;
}

h3, .h3 {
    font-size: clamp(22px, 3.5vw, 30px) !important;
}

p, span, li, a, button, input, select, textarea {
    font-family: var(--mh-font-body) !important;
    font-weight: 400; /* Default body is Inter 400 */
}

/* Accessibility Focus States */
a:focus, button:focus, input:focus, select:focus, textarea:focus, [tabindex]:focus {
    outline: 2px solid var(--mh-color-gold) !important;
    outline-offset: 4px !important;
}

/* -------------------------------------------------------------
 * HEADER STYLING
 * ------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.site-header-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-title-logo {
    font-family: var(--mh-font-title) !important;
    font-size: 24px;
    font-weight: 600 !important;
    letter-spacing: 3px;
    color: var(--mh-color-gold) !important; /* Title Logo: Muted Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title-logo:hover {
    color: var(--mh-color-white) !important;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.main-navigation a {
    font-family: var(--mh-font-body) !important;
    font-size: 12px;
    font-weight: 600 !important; /* Navigation: Inter 600 */
    letter-spacing: 2px;
    color: var(--mh-color-text) !important; /* Off-White */
    text-decoration: none;
    transition: color 0.25s ease;
}

.main-navigation a:hover {
    color: var(--mh-color-gold) !important; /* Hover: Muted Gold */
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    z-index: 100000;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--mh-color-white);
    transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-menu-principal-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--mh-color-bg);
        border-left: 1px solid #111;
        padding: 120px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99999;
    }
    
    .menu-menu-principal-container.active {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 35px;
    }
    
    .main-navigation a {
        font-size: 16px;
        display: block;
    }
    
    /* Toggle active state */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* -------------------------------------------------------------
 * SINGLE PROJECT TEMPLATE STYLING
 * ------------------------------------------------------------- */
.muralhex-project-single {
    min-height: 100vh;
}

.project-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-hero:hover .project-hero-bg {
    transform: scale(1.04);
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45); /* Discreet text shadow for readability */
}

.project-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.project-badge {
    background-color: transparent;
    border: 1px solid var(--mh-color-gold);
    color: var(--mh-color-gold);
    font-family: var(--mh-font-body) !important;
    font-size: 11px;
    font-weight: 600 !important; /* Badges: Inter 600 */
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
}

.project-year {
    font-family: var(--mh-font-body) !important;
    font-size: 14px;
    color: var(--mh-color-gold) !important; /* Over image = Gold */
    font-weight: 500 !important; /* Over image = Inter 500 */
    letter-spacing: 1px;
}

.project-title {
    font-family: var(--mh-font-title) !important;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700 !important; /* Over image = Cormorant 700 */
    margin: 0;
    line-height: 1.1;
    color: var(--mh-color-gold) !important; /* Muted Gold */
    letter-spacing: 1px;
}

.project-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 0 100px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

@media (max-width: 991px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Excerpt/Manifesto styling: 17px (desktop) / 15px (mobile), max-width 70ch */
.project-excerpt {
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: var(--mh-color-text);
    margin-bottom: 30px;
    font-family: var(--mh-font-title) !important;
    font-weight: 400 !important; /* Poetic: Cormorant 400 */
    font-style: italic;
    border-left: 2px solid var(--mh-color-gold);
    padding-left: 20px;
    max-width: 70ch;
}

/* Description styling: 16px (desktop) / 15px (mobile), line-height 1.6, max-width 70ch */
.project-description {
    color: var(--mh-color-text);
    font-size: 16px !important;
    line-height: 1.6 !important;
    max-width: 70ch;
}

@media (max-width: 768px) {
    .project-excerpt {
        font-size: 15px !important;
    }
    .project-description {
        font-size: 15px !important;
    }
}

.project-description p {
    margin-bottom: 25px;
    font-family: var(--mh-font-body) !important;
    font-weight: 400; /* Body: Inter 400 */
}

.project-section-title {
    font-family: var(--mh-font-title) !important;
    font-weight: 600 !important; /* Title: Cormorant 600 */
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--mh-color-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.project-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #000;
    border: 1px solid #111;
}

.project-video-wrapper iframe,
.project-video-wrapper object,
.project-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.project-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #111;
    background-color: #050505;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.08);
}

/* -------------------------------------------------------------
 * CTA BUTTONS STYLING - Premium editorial style
 * ------------------------------------------------------------- */
.muralhex-btn,
.elementor-button {
    display: inline-block !important;
    background-color: transparent !important;
    border: 1px solid var(--mh-color-gold) !important;
    color: var(--mh-color-text) !important; /* Warm Off-White default */
    text-transform: uppercase !important;
    font-family: var(--mh-font-body) !important;
    font-size: 12px !important;
    font-weight: 600 !important; /* Inter 600 */
    letter-spacing: 2px !important;
    padding: 15px 30px !important; /* Target height > 44px for touch */
    border-radius: 0px !important; /* Flat corner */
    text-decoration: none !important;
    transition: all 0.25s ease-in-out !important;
}

.muralhex-btn:hover,
.elementor-button:hover,
.muralhex-btn:focus,
.elementor-button:focus {
    background-color: var(--mh-color-gold) !important; /* Muted Gold */
    color: #000000 !important; /* Pure Black text */
    border-color: var(--mh-color-gold) !important;
}

/* Explicit class to override button text color to Gold over images */
.mh-btn-gold-text {
    color: var(--mh-color-gold) !important;
    border-color: var(--mh-color-gold) !important;
}

.mh-btn-gold-text:hover,
.mh-btn-gold-text:focus {
    color: #000000 !important;
    background-color: var(--mh-color-gold) !important;
}

.muralhex-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.muralhex-btn:hover .arrow {
    transform: translateX(4px);
}

/* Links that are not CTAs - underline transition on hover */
.project-description a,
.muralhex-single-post a,
.footer-contact a,
.project-card-link {
    color: var(--mh-color-text);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.project-description a,
.muralhex-single-post a,
.footer-contact a {
    border-bottom: 1px solid transparent;
}

.project-description a:hover,
.muralhex-single-post a:hover,
.footer-contact a:hover {
    color: var(--mh-color-gold);
    border-bottom-color: var(--mh-color-gold);
}

.project-nav-footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.back-to-projects {
    color: var(--mh-color-text-muted);
    font-family: var(--mh-font-body) !important;
    font-size: 12px;
    font-weight: 600 !important; /* Button link: Inter 600 */
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-projects:hover {
    color: var(--mh-color-gold);
}

/* -------------------------------------------------------------
 * ARCHIVE PROJECTS TEMPLATE STYLING
 * ------------------------------------------------------------- */
.muralhex-projects-archive {
    min-height: 100vh;
}

.archive-header {
    text-align: center;
    padding: 120px 20px 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.archive-title {
    font-family: var(--mh-font-title) !important;
    font-size: clamp(36px, 6vw, 60px);
    letter-spacing: 3px;
    color: var(--mh-color-gold) !important; /* Gold */
    margin: 0 0 15px 0;
    font-weight: 600 !important; /* Title: Cormorant 600 */
}

.archive-subtitle {
    font-family: var(--mh-font-body) !important;
    font-size: 16px;
    color: var(--mh-color-text-muted);
    font-weight: 400;
    letter-spacing: 1px;
}

.archive-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 120px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.project-card {
    background-color: var(--mh-color-surface);
    border: 1px solid #111;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.project-card:hover {
    border-color: #222;
    transform: translateY(-5px);
}

.project-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.project-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #000;
}

.project-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    color: #444;
    font-family: var(--mh-font-body) !important;
    font-size: 11px;
    font-weight: 600 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project-card:hover .project-card-hover-overlay {
    opacity: 1;
}

.project-card-view-btn {
    border: 1px solid var(--mh-color-gold);
    color: var(--mh-color-gold);
    padding: 8px 18px;
    font-family: var(--mh-font-body) !important;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.project-card-view-btn:hover {
    background-color: var(--mh-color-gold);
    color: #000;
}

.project-card-info {
    padding: 25px;
}

.project-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.project-card-badge {
    font-family: var(--mh-font-body) !important;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mh-color-gold);
    font-weight: 600 !important; /* Badge: Inter 600 */
}

.project-card-year {
    font-family: var(--mh-font-body) !important;
    font-size: 12px;
    font-weight: 500 !important; /* Meta: Inter 500 */
    color: var(--mh-color-text-muted);
}

.project-card-title {
    font-family: var(--mh-font-title) !important;
    font-size: 22px;
    font-weight: 600 !important; /* Title: Cormorant 600 */
    margin: 0;
    color: var(--mh-color-white);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.archive-pagination {
    margin-top: 60px;
    text-align: center;
}

.archive-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid #222;
    color: var(--mh-color-text);
    font-family: var(--mh-font-body) !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
    border-color: var(--mh-color-gold);
    color: var(--mh-color-gold);
    background-color: rgba(184,154,90,0.03);
}

/* -------------------------------------------------------------
 * LIGHTBOX STYLING
 * ------------------------------------------------------------- */
.muralhex-lightbox {
    display: none;
    position: fixed;
    z-index: 999999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.muralhex-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid #111;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: zoom 0.3s ease-out;
}

@keyframes zoom {
    from {transform:scale(0.95); opacity:0}
    to {transform:scale(1); opacity:1}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 200;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--mh-color-gold);
    text-decoration: none;
    cursor: pointer;
}

/* -------------------------------------------------------------
 * FOOTER STYLING
 * ------------------------------------------------------------- */
.site-footer {
    background-color: var(--mh-color-surface) !important;
    border-top: 1px solid #111;
    padding: 80px 0 40px 0 !important;
}

.site-footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .site-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.footer-logo {
    font-family: var(--mh-font-title) !important;
    font-size: 28px;
    font-weight: 600 !important; /* Footer logo: Cormorant 600 */
    letter-spacing: 3px;
    color: var(--mh-color-gold) !important; /* Muted Gold */
    margin: 0 0 10px 0;
}

.footer-tagline {
    font-family: var(--mh-font-title) !important;
    font-weight: 400 !important; /* Footer tagline: Cormorant 400 */
    font-size: 14px;
    color: var(--mh-color-text-muted) !important;
    font-style: italic;
    margin: 0;
}

.footer-contact p {
    margin: 0 0 10px 0;
    font-size: 15px;
}

.footer-contact a {
    color: var(--mh-color-text) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--mh-color-gold) !important;
}

.footer-wa-btn {
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--mh-color-gold) !important;
    color: var(--mh-color-gold) !important;
    text-transform: uppercase;
    font-family: var(--mh-font-body) !important;
    font-size: 11px;
    font-weight: 600 !important; /* Button: Inter 600 */
    letter-spacing: 2px;
    padding: 15px 30px !important; /* Target height > 44px */
    border-radius: 0px !important;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.25s ease-in-out;
}

.footer-wa-btn:hover {
    background-color: var(--mh-color-gold) !important;
    color: #000000 !important;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .footer-socials {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

.footer-socials a {
    color: var(--mh-color-text-muted) !important;
    font-family: var(--mh-font-body) !important;
    font-weight: 500 !important;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--mh-color-white) !important;
}

.footer-copy {
    grid-column: 1 / -1;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--mh-color-text-muted) !important;
}

/* -------------------------------------------------------------
 * NATIVE ARCHIVE & SINGLE POST STYLING (FOR /ARQUIVO/)
 * ------------------------------------------------------------- */
.muralhex-archive-post,
.muralhex-single-post {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 100px 0 140px 0;
}

.muralhex-archive-post .archive-title {
    margin-bottom: 60px;
}

.muralhex-post-item {
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.muralhex-post-title {
    font-family: var(--mh-font-title) !important;
    font-size: 32px;
    font-weight: 600 !important;
    margin: 0 0 15px 0;
}

.muralhex-post-title a {
    color: var(--mh-color-gold) !important; /* Gold Title */
    text-decoration: none;
    transition: color 0.3s ease;
}

.muralhex-post-title a:hover {
    color: var(--mh-color-white) !important;
}

.muralhex-post-meta {
    font-family: var(--mh-font-body) !important;
    font-size: 13px;
    font-weight: 500 !important;
    color: var(--mh-color-text-muted);
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.muralhex-post-meta a {
    color: var(--mh-color-text-muted) !important;
    text-decoration: none;
}

.muralhex-post-meta a:hover {
    color: var(--mh-color-gold) !important;
}

.muralhex-post-excerpt {
    font-family: var(--mh-font-body) !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

.muralhex-readmore {
    display: inline-block;
    margin-top: 15px;
    color: var(--mh-color-gold) !important;
    font-family: var(--mh-font-body) !important;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600 !important;
}

.muralhex-readmore:hover {
    color: var(--mh-color-white) !important;
}

/* Single Post Specifics */
.muralhex-single-post .post-title {
    font-family: var(--mh-font-title) !important;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600 !important;
    color: var(--mh-color-gold) !important; /* Gold */
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.muralhex-single-post .post-meta {
    font-family: var(--mh-font-body) !important;
    font-size: 13px;
    font-weight: 500 !important;
    color: var(--mh-color-text-muted);
    margin-bottom: 40px;
    border-bottom: 1px solid #111;
    padding-bottom: 15px;
}

.muralhex-single-post .post-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--mh-color-text);
}

.muralhex-single-post .post-content p {
    margin-bottom: 25px;
    font-family: var(--mh-font-body) !important;
    font-weight: 400; /* Body: Inter 400 */
}

.muralhex-single-post .post-content h2,
.muralhex-single-post .post-content h3 {
    font-family: var(--mh-font-title) !important;
    color: var(--mh-color-gold) !important; /* Gold */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600 !important;
}

/* -------------------------------------------------------------
 * GENERAL UTILITY & ELEMENTOR STYLE OVERRIDES FOR COMPATIBILITY
 * ------------------------------------------------------------- */
.elementor-heading-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

/* Pause spacing blocks background is always pure black */
.muralhex-pause-block {
    background-color: #000000 !important;
}

/* Text Marker Highlighter for overlay text on images */
.muralhex-text-marker {
    display: inline !important;
    background-color: #000000 !important;
    color: var(--mh-color-text) !important;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0.04em 0.12em !important;
    text-shadow: none !important;
    line-height: 1.65 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Header Logo Image height styling */
.header-logo-img img {
    height: 50px !important;
    width: auto !important;
    max-height: 50px !important;
}

@media (max-width: 768px) {
    .header-logo-img img {
        height: 42px !important;
        max-height: 42px !important;
    }
}

@media (max-width: 480px) {
    .header-logo-img img {
        height: 35px !important;
        max-height: 35px !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .project-hero-bg,
    .project-gallery-item img,
    .project-card-img,
    .muralhex-btn,
    .muralhex-btn .arrow,
    .lightbox-content,
    .menu-menu-principal-container {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}
