/* ============================================
   MODERN INNER PAGE CSS
   Theme: Woodmart Child
   Requires: tt-design-system (global-design-system.css)

   Matches the approved contact-page design:
   full-width navy hero band, start-aligned title,
   plain white content area below.
   ============================================ */

/* Page wrapper - plain white, consistent with homepage sections */
.tt-inner-page-wrapper {
    background-color: #FFFFFF;
}

/* ============================================
   HERO SECTION (full-bleed navy band)
   The template renders inside Woodmart's
   .wd-content-layout .container, so the hero
   breaks out to full viewport width.
   ============================================ */
.tt-inner-hero {
    background: linear-gradient(135deg, var(--tt-blue, #1E5DAB) 0%, var(--tt-navy, #0A1628) 100%);
    padding: 60px 20px;
    text-align: start; /* left in LTR, right in RTL */
    position: relative;
    overflow: hidden;
    color: #ffffff;
    /* Break out of the Woodmart .container to full viewport width */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Subtle glow accent */
.tt-inner-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    inset-inline-end: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tt-inner-hero .tt-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tt-inner-hero h1 {
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Breadcrumbs */
.tt-inner-breadcrumbs {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.tt-inner-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s ease;
}

.tt-inner-breadcrumbs a:hover {
    color: var(--tt-gold, #C8A951);
}

.tt-inner-breadcrumbs .tt-sep {
    margin: 0 8px;
    opacity: 0.6;
}

/* ============================================
   CONTENT AREA
   ============================================ */
.tt-inner-content {
    padding: 48px 0 64px 0;
}

.tt-inner-content .tt-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Native WP / Elementor content inside */
.tt-inner-card .entry-content {
    color: var(--tt-text-dark, #0A1628);
    line-height: 1.8;
}

.tt-inner-card .entry-content > h2:first-child,
.tt-inner-card .entry-content > h3:first-child {
    margin-top: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .tt-inner-hero {
        padding: 40px 16px;
    }

    .tt-inner-content {
        padding: 32px 0 48px 0;
    }
}
