/* ============================================================
   page-shell.css — common chrome shared by ~48 page controllers.

   Loaded by templates/partials/head.php on every layout-rendered
   page. Page-specific controllers may still emit their own
   <style> block via getStyles() to override these defaults for
   their unique sections; the cascade order (head.php link
   first, controller inline-style second) lets per-page values
   win automatically.

   Last consolidated 2026-05-15 (Pre-cutover code health audit).
   ============================================================ */

body {
    background-image: url("/home_bg.png");
    background-repeat: repeat;
}

.griffin-main-card {
    background-color: white;
    width: 80%;
    max-width: 1600px;
    margin: 140px auto 80px auto;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
    text-align: left;
    min-height: 600px;
    overflow: hidden;
}

.page-hero {
    width: 100%;
    height: 450px;
    position: relative;
    background-color: #000;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.content-body {
    padding: 60px;
}

h1.page-title {
    font-family: 'Teko', sans-serif !important;
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    line-height: 0.9;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.cta-bar {
    background-color: #111;
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid #007cc3;
}

.btn-custom {
    font-family: 'Teko', sans-serif !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

@media (max-width: 992px) {
    .griffin-main-card { width: 95%; margin-top: 100px; }
    .page-hero { height: 350px; }
    h1.page-title { font-family: 'Teko', sans-serif !important; font-size: 56px; }
    .content-body { padding: 30px 20px; }
}
