/**
 * The Decon Project - Custom Styles
 * 
 * Color Palette:
 * Primary Red: #d9021b
 * Black: #000000
 * White: #ffffff
 * Gray: #333333, #666666, #999999
 */
/* ========================================
   GLOBAL STYLES
======================================== */
:root {
    --color-primary: #d9021b;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --max-width: 1800px;
    --section-padding: 80px 20px;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    color: var(--color-gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* ========================================
   TYPOGRAPHY
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Capture It', Arial, sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 900;
    /* Force bold */
}
h1 {
    font-size: 48px;
    letter-spacing: 2px;
}
h2 {
    font-size: 36px;
    letter-spacing: 1.5px;
}
h3 {
    font-size: 24px;
    letter-spacing: 1px;
}
p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.8;
}
/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Capture It', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: bold;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: #b00116;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 2, 27, 0.3);
}
.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
}
.btn-secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
/* ========================================
   HEADER / NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.9);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo img {
    height: 50px;
    width: auto;
}
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.main-navigation a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    font-weight: 900;
    font-family: 'Capture It', Arial, sans-serif;
}
.main-navigation a:hover {
    color: var(--color-primary);
}
.header-donate-btn {
    padding: 10px 25px;
    font-size: 12px;
}
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
}
/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
   
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 20px;
}
.hero-title {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
    font-weight: 900;
	margin-top:300px;
}
/* ========================================
   IMAGE + CONTENT SECTIONS
======================================== */
.image-content-section {
    padding: var(--section-padding);
}
.image-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.image-content-grid.reverse {
    direction: rtl;
}
.image-content-grid.reverse>* {
    direction: ltr;
}
.content-block h2 {
    margin-bottom: 25px;
}
.content-block p {
    margin-bottom: 25px;
}
/* Image Grids */
.image-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.image-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.image-grid-2 img,
.image-grid-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-image img {
    width: 100%;
    height: auto;
}
/* ========================================
   QUOTE / TESTIMONIAL SECTION
======================================== */
.quote-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 100px 20px;
    text-align: center;
}
.quote-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.quote-text {
    font-size: 32px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}
.quote-text::before {
    content: '"';
    font-size: 120px;
    position: absolute;
    top: -40px;
    left: -60px;
    font-family: Georgia, serif;
}
.quote-author {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: var(--section-padding);
    background-color: #f5f5f5;
}
.services-header {
    text-align: center;
    margin-bottom: 60px;
}
.services-header h2 {
    margin-bottom: 15px;
}
.services-header p {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.service-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray);
}
/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}
.cta-background {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.2;
}
.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}
.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
}
.cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
}
.cta-section .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}
.cta-section .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ========================================
   CONTACT FORM 7 STYLES
======================================== */
.wpcf7 {
    max-width: 600px;
    margin: 0 auto;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}
.wpcf7 input[type="submit"] {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 40px;
    border: none;
    font-family: 'Capture It', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wpcf7 input[type="submit"]:hover {
    background-color: #b00116;
    transform: translateY(-2px);
}
/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 20px;
    }
    .hero-title {
        font-size: 48px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    :root {
        --section-padding: 40px 20px;
    }
    /* Header */
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .main-navigation ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    /* Hero */
    .hero-title {
        font-size: 36px;
    }
    /* Image + Content Grids */
    .image-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .image-content-grid.reverse {
        direction: ltr;
    }
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Typography */
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 20px;
    }
    .quote-text {
        font-size: 24px;
    }
    .quote-text::before {
        font-size: 80px;
        left: -20px;
    }
}
@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .hero-title {
        font-size: 28px;
    }
    .cta-content h2 {
        font-size: 32px;
    }
}
/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}
.text-white {
    color: var(--color-white);
}
.bg-gray {
    background-color: #f5f5f5;
}
.bg-white {
    background-color: var(--color-white);
}
.section-spacing {
    padding: var(--section-padding);
}





/* === HEADER OVERRIDES TO MATCH ORIGINAL DESIGN === */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent !important; /* kill white background from parent theme */
    border-bottom: none;
}

/* When scrolled, keep the dark bar look */
.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Layout: logo left, nav + donate right */
.site-header .header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ensure logo stays at natural size */
.site-logo img {
    height: 50px;
    width: auto;
}

/* Navigation alignment */
.site-header .main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    background: transparent !important;
}

/* Force the WP menu inline */
.site-header .main-navigation .primary-menu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu items */
.site-header .main-navigation .primary-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    font-family: 'Capture It', Arial, sans-serif;
}

/* Compact DONATE button – no full-width red bar */
.site-header .header-donate-btn {
    display: inline-block !important;
    width: auto !important;
    padding: 10px 25px;
    margin-left: 30px;
    white-space: nowrap;
}





/* === FIRST IMAGE + CONTENT SECTION (DANGER SHOULDN'T FOLLOW…) === */

/* Keep this section on white so it matches the comp */
.image-content-section {
    background-color: #ffffff;
}

/* Layout tweaks so the left stack and right text feel balanced */
.image-content-grid {
    align-items: center;
}

/* ==== Overlapping image cards on the left ==== */

.image-content-section .image-block {
    display: flex;
    justify-content: center;
}

.image-content-section .image-grid-2 {
    position: relative;
    width: 480px;              /* controls how far apart the cards are */
    height: 320px;
}

/* Base styles for each card */
.image-content-section .image-grid-2 img {
    position: absolute;
    width: 260px;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Left / lower card */
.image-content-section .image-grid-2 img:first-child {
    left: 0;
    bottom: 0;
}

/* Right / upper card */
.image-content-section .image-grid-2 img:last-child {
    right: 0;
    top: -40px;
}

/* ==== Heading + red bar on the right ==== */

.image-content-section .content-block {
    max-width: 520px;
}

.image-content-section .content-block h2 {
    position: relative;
    padding-left: 22px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vertical red bar */
.image-content-section .content-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: -6px;
    width: 4px;
    background-color: var(--color-primary);
}

/* Body copy */
.image-content-section .content-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

/* ==== Buttons + shadows ==== */

.image-content-section .btn-group {
    margin-top: 26px;
    display: flex;
    gap: 14px;
}

.image-content-section .btn-group .btn {
    border-radius: 4px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* Red primary already defined as .btn-primary – just ensure it pops */
.image-content-section .btn-group .btn-primary {
    background-color: var(--color-primary);
}

/* Black secondary button */
.image-content-section .btn-group .btn-secondary {
    background-color: #000000;
    color: #ffffff;
}




/* ==== Overlapping image cards on the left ==== */

.image-content-section .image-block {
    display: flex;
    justify-content: center;
    position: relative;   /* allow pseudo-element shadow */
    z-index: 0;
}

.image-content-section .image-grid-2 {
    position: relative;
    width: 480px;
    height: 320px;
}

/* Base styles for each card */
.image-content-section .image-grid-2 img {
    position: absolute;
    width: 260px;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    background: #ffffff;
        box-shadow: 30px 26px 50px rgba(0, 0, 0, 0.75);
}

/* Left / lower card */
.image-content-section .image-grid-2 img:first-child {
    left: 0;
    bottom: 0;
}

/* Right / upper card */
.image-content-section .image-grid-2 img:last-child {
    right: 0;
    top: -40px;
}

/* Big soft “under” shadow for the whole stack */
.image-content-section .image-block::before {
    content: "";
    position: absolute;
    left: -40px;
    right: -40px;
    bottom: -40px;
    height: 120px;
    z-index: -1;
    background: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 0.30) 0,
        rgba(0, 0, 0, 0.00) 70%);
}
/* Decon – ensure section headings use Capture It */
body.home .image-content-section .content-block h2 {
    font-family: 'Capture It', Arial, sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}



/* === OUR MISSION SECTION === */

.mission-section {
    /* Stone / paper texture background */
    background: url('https://thedeconprojec.wpenginepowered.com/wp-content/uploads/2025/12/Retangulo-1.png')
                center center / cover no-repeat #e0e0e0 !important;
}

.mission-section .image-content-grid {
    align-items: center;
}

.mission-section .content-block {
    max-width: 540px;
}

/* Heading inherits Capture It + red bar from earlier rules */
.mission-section .content-block h2 {
    margin-bottom: 22px;
}

.mission-section .content-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

/* CTA button */
.mission-section .btn-group {
    margin-top: 36px;
}

.mission-section .btn-group .btn-primary {
    padding: 18px 60px;
    font-size: 13px;
    letter-spacing: 0.12em;
    border-radius: 4px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55);
}

/* 2×2 image grid cards */
.mission-section .image-grid-4 {
    gap: 24px;
}

.mission-section .image-grid-4 img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    background: #ffffff;
        box-shadow: 30px 26px 50px rgba(0, 0, 0, 0.75);
}





/* === BORN FROM EXPERIENCE SECTION ======================== */
/* Full-width strip with warm background */
.story-section {
    padding: 80px 0;
}

/* Let this section breathe wider than the standard 1200px if you like */
.story-section .container {
    max-width: 1400px;
    padding: 0 40px;
}

/* Two-column layout, image tall on the left, card on the right */
.story-section .image-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    gap: 60px;
    align-items: stretch;
}

/* Make the whole left side a flat, full-height image — no card look */
.story-section .image-block,
.story-section .single-image,
.story-section .single-image img {
    height: 100%;
}

.story-section .single-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;        /* kill rounded corners */
    box-shadow: none;        /* kill card shadow */
    background: transparent;
}

/* Right side: actual white card with rounded corners + shadow */
.story-section .content-block {
    background: #ffffff;
    padding: 70px 80px;
    border-radius: 30px;
}

/* Heading styling stays consistent with the other sections */
.story-section .content-block h2 {
    position: relative;
    padding-left: 22px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

/* Reuse the vertical red bar treatment */
.story-section .content-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: -6px;
    width: 4px;
    background-color: var(--color-primary);
}

/* === BORN FROM EXPERIENCE / STORY SECTION ===================== */

.story-section {
    padding: 0;
    overflow: visible;
}

/* Let this section go a bit wider than the standard 1200px */
.story-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 0; /* no left padding so the image can sit flush */
}

/* Two columns: big image on the left, card on the right */
.story-section .image-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: 60px;
    align-items: stretch;
}

/* Make the left image “bleed” to the viewport edge */
.story-section .image-block {
    position: relative;
    margin-left: calc(-50vw + 50%); /* pull image to the left edge */
}

/* Wrapper for the image */
.story-section .single-image {
    height: 100%;
    overflow: hidden;
    border-radius: 0 40px 40px 0; /* only the right side rounded */
}

/* Actual image: full height, no card shadow */
.story-section .single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;      /* override global single-image img rule */
    box-shadow: none;      /* no “card” shadow on the image itself */
    background: transparent;
}

/* The white text card on the right */
.story-section .content-block {
    background: #ffffff;
    padding: 70px 10px;
    border-radius: 30px;
    max-width: 940px;
}

/* Heading with red vertical bar */
.story-section .content-block h2 {
    position: relative;
    padding-left: 22px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.story-section .content-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: -6px;
    width: 4px;
    background-color: var(--color-primary);
}

/* Copy styling */
.story-section .content-block p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-gray-dark);
}
.single-image img {
	        box-shadow: 30px 26px 50px rgba(0, 0, 0, 0.75);
}

/* === GLOBAL QUOTE STRIP (TEXTURED RED) ======================= */

.quote-section {
    /* Textured red background */
    background:
        url('https://thedeconprojec.wpenginepowered.com/wp-content/uploads/2025/12/Retangulo-12.png')
        center center / cover no-repeat #d9021b;
    padding: 140px 20px;
    color: #000000;
    text-align: center;
}

.quote-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Main quote line */
.quote-text {
    position: relative;
    margin: 0 0 40px 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.7;
    font-weight: 600;
    font-style: normal; /* kill the old italic */
    color: #000000;
}

/* Centered quote mark above the text */
.quote-text::before {
    content: "“";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
    font-size: 70px;
    line-height: 1;
    color: #fff;
}

/* Attribution */
.quote-author {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    font-family: "Capture It", Arial, sans-serif;
    color: #fff;
}


/* === SERVICES SECTION – "WHEN THE FIRE'S OUT…" ==================== */

/* Stone / paper background */
.services-section {
    padding: 100px 20px 110px;
    background-color: #f3f3f3;
    background-image: url('https://thedeconprojec.wpenginepowered.com/wp-content/uploads/2025/12/Retangulo-1.png');
    background-repeat: repeat;
    background-size: auto;
}

/* Header text */
.services-section .services-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 70px;
}

.services-section .services-header h2 {
    font-family: 'Capture It', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 42px;
    margin-bottom: 22px;
}

.services-section .services-header p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray-dark);
}

/* "WHAT WE PROVIDE" subtitle */
.services-section .services-subtitle {
    margin-top: 40px;
    font-family: 'Capture It', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 24px;
}

/* Cards grid */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
}

/* === SERVICE CARDS ====================================== */

/* Outer card: holds flame background + radius + shadow */
.services-section .service-card {
    position: relative;
    background: #ffffff
        url('https://thedeconprojec.wpenginepowered.com/wp-content/uploads/2025/12/Retangulo-4.png')
        top right / 180px auto no-repeat;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden; /* flame respects rounded corners */
	background-repeat: no-repeat;
    background-size: contain;
	                box-shadow:
            18px 26px 40px rgba(0, 0, 0, 0.75),   /* tight, dark drop close to card */
            40px 70px 90px rgba(0, 0, 0, 0.6),    /* wider, softer outer plume */
            0 0 0 1px rgba(255, 255, 255, 0.35);  /* faint edge highlight to “lift” top/left */
}

/* Inner wrapper: provides padding for content but does NOT affect bg */
.services-section .service-card-inner {
    padding: 80px 50px 60px;
    position: relative;
    z-index: 1; /* keep content above the flame art */
}

/* Icon */
.services-section .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 30px;
}

.services-section .service-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card heading/body – left aligned like the comp */
.services-section .service-card h3 {
    font-family: 'Capture It', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: none;
    margin-bottom: 20px;
    text-align: left;
}

.services-section .service-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-gray-dark);
    text-align: left;
}

/* === RESPONSIVE ========================================= */

@media (max-width: 992px) {
    .services-section {
        padding: 70px 20px 80px;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .services-section .service-card-inner {
        padding: 60px 30px 50px;
    }
}

/* =========================================================
   FOOTER WITH FULL-WIDTH CTA PANEL
   ========================================================= */

/* Base footer wrapper */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 0;
    padding: 0;
    font-size: 15px;
}

/* Footer links */
.site-footer a {
    color: #ffffff;
    text-decoration: none;
}
.site-footer a:hover {
    color: #d9021b;
}

/* Top area: CTA on the left, content on the right */
.site-footer .footer-top {
    max-width: 1220px;                /* keeps right content on the grid */
    margin: 0 auto;
    padding: 0 24px 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    column-gap: 90px;
    align-items: center;
}

/* ===================== LEFT: RED CTA PANEL ===================== */

.footer-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 0 40px 40px 0;
    background-color: #d9021b;
    background-image: url('https://thedeconprojec.wpenginepowered.com/wp-content/uploads/2025/12/Retangulo-10.png');
    background-size: cover;
    background-position: center left;
        padding: 70px 80px 70px 250px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);

    /* Pull the red panel to the very left edge of the viewport
       while keeping the right content centered in the 1220px grid */
    margin: 80px 0 80px calc(-1 * ((100vw - 1220px) / 2));
}

/* CTA heading & text */
.footer-cta-panel h2 {
    font-family: 'Capture It', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 24px;
}

.footer-cta-text p {
    font-size: 16px;
    line-height: 1.9;
    max-width: 520px;
    margin: 0;
}

/* CTA button – black like the design */
.footer-cta-actions {
    margin-top: 36px;
}

.footer-cta-actions .btn-primary {
    background-color: #000000;
    color: #ffffff;
    padding: 18px 70px;
    font-size: 14px;
    letter-spacing: 0.12em;
    border-radius: 0;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6);
}

.footer-cta-actions .btn-primary:hover {
    background-color: #222222;
    transform: translateY(-2px);
}

/* ===================== RIGHT: TWO-COLUMN FOOTER ===================== */

.site-footer .footer-main {
    display: block; /* the grid is handled by .footer-content */
}

/* Two columns only:
   - left: logo + about + mission (stacked)
   - right: contact + socials */
.site-footer .footer-content {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
    column-gap: 70px;
    row-gap: 0;
    align-items: flex-start;
}

/* Logo column (first child) and the next two info columns
   all live in the LEFT grid column */
.footer-logo-column,
.site-footer .footer-content .footer-column:nth-child(2),
.site-footer .footer-content .footer-column:nth-child(3) {
    grid-column: 1;
}

/* Contact column (last child) lives in the RIGHT grid column */
.site-footer .footer-content .footer-column:last-child {
    grid-column: 2;
}

/* Logo */
.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 24px;
}

/* Headings */
.site-footer .footer-column h4 {
    font-family: 'Capture It', Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: #ffffff;
}

/* Paragraph copy */
.site-footer .footer-column p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #cccccc;
}

/* Social icons – just the PNG circles you provided */
.site-footer .social-links {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background-color: transparent;
    border-radius: 0;
}

.site-footer .social-links img {
    display: block;
    width: 40px;
    height: 40px;
}

/* ===================== BOTTOM COPYRIGHT BAR ===================== */

.site-footer .footer-bottom {
    border-top: 1px solid #333333;
    text-align: center;
    padding: 20px 24px 26px;
    font-size: 13px;
    color: #999999;
}

/* ===================== FOOTER RESPONSIVE ===================== */

@media (max-width: 1024px) {
    .site-footer .footer-top {
        grid-template-columns: 1fr;
        padding: 0 20px 50px;
        row-gap: 50px;
    }

    .footer-cta-panel {
        margin: 60px 0 20px 0;     /* no negative margin on small screens */
        border-radius: 32px;
        padding: 50px 40px;
    }

    .site-footer .footer-content {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .footer-logo-column,
    .site-footer .footer-content .footer-column:nth-child(2),
    .site-footer .footer-content .footer-column:nth-child(3),
    .site-footer .footer-content .footer-column:last-child {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .footer-cta-panel h2 {
        font-size: 30px;
    }
}






/* ========================================
   DANGER SECTION – MATCH COMP SCALE
======================================== */
@media (min-width: 1200px) {

    /* Let this section breathe more */
    .danger-section {
        padding: 140px 60px;
    }

    .danger-section .image-content-grid {
        grid-template-columns: 48% 52%;
        align-items: center;
        gap: 80px;
    }

    /* Bigger overlapping card group */
    .danger-section .image-grid-2 {
        position: relative;
        width: 700px;      /* wider than base 480px */
        height: 440px;     /* taller than base 320px */
    }

    /* Base (back) card */
    .danger-section .image-grid-2 img {
        position: absolute;
        width: 420px;      /* large vertical card */
        height: 440px;
        object-fit: cover;
        border-radius: 22px;
        background: #ffffff;
                box-shadow:
            18px 26px 40px rgba(0, 0, 0, 0.75),   /* tight, dark drop close to card */
            40px 70px 90px rgba(0, 0, 0, 0.6),    /* wider, softer outer plume */
            0 0 0 1px rgba(255, 255, 255, 0.35);  /* faint edge highlight to “lift” top/left */
    }

    /* Front (upper-right) card */
    .danger-section .image-grid-2 img:last-child {
        width: 380px;
        height: 380px;
        top: -40px;
        right: 0;
    }

    /* Headline + copy like the comp */
    .danger-section .content-block {
        max-width: 640px;  /* not as constrained as the default 520px */
    }

    .danger-section .content-block h2 {
        font-size: 62px;
        line-height: 1.08;
        letter-spacing: 1.6px;
    }

    .danger-section .content-block p {
        font-size: 18px;
        line-height: 1.55;
        max-width: 620px;
    }

    /* Bigger, heavier buttons */
    .danger-section .btn-group .btn {
        font-size: 18px;
        padding: 18px 50px;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    }
}


/* ========================================
   MISSION SECTION – MATCH COMP SCALE
======================================== */
@media (min-width: 1200px) {

    .mission-section {
        padding: 140px 70px;
    }

    /* 50/50 balance between text and image grid */
    .mission-section .image-content-grid {
        grid-template-columns: 50% 50%;
        align-items: center;
        gap: 90px;
    }

    /* Text side: larger, more heroic */
    .mission-section .content-block {
        max-width: 640px;
    }

    .mission-section .content-block h2 {
        font-size: 58px;
        line-height: 1.08;
        letter-spacing: 1.4px;
    }

    .mission-section .content-block p {
        font-size: 18px;
        line-height: 1.6;
        max-width: 620px;
    }

    .mission-section .btn-group .btn {
        font-size: 17px;
        padding: 18px 56px;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    }

    /* Right side 2×2 image grid */
    .mission-section .image-grid-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 215px;
        gap: 26px;
        width: 640px;
        max-width: 100%;
    }

    .mission-section .image-grid-4 .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    }
}
/* ========================================
   MISSION SECTION – STAGGERED 2×2 GRID
   (all cards same size, left column lower)
======================================== */

@media (min-width: 1200px) and (max-width: 1600px) {
	.mission-section .image-grid-4 {
		grid-template-columns: repeat(2, 260px); /* two equal columns */
	}
	    .mission-section .content-block {
	margin-left:50px;		
	}
}
@media (min-width: 1601px) {
	.mission-section .image-grid-4 {
		grid-template-columns: repeat(2, 360px); /* two equal columns */
	}
}
@media (min-width: 1200px) {

    /* Make the 4 images a 2×2 grid on the right */
    .mission-section .image-grid-4 {
        display: grid;
        
        grid-auto-rows: 230px;                   /* same height for all */
        column-gap: 32px;
        row-gap: 32px;
        justify-content: flex-end;               /* tuck grid to the right */
    }

    /* All four cards: same size & styling */
    .mission-section .image-grid-4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow:
            18px 26px 40px rgba(0, 0, 0, 0.75),   /* tight, dark drop close to card */
            40px 70px 90px rgba(0, 0, 0, 0.6),    /* wider, softer outer plume */
            0 0 0 1px rgba(255, 255, 255, 0.35);  /* faint edge highlight to “lift” top/left */
    }

    /* Offset the entire LEFT column (imgs 1 & 3) downward */
    .mission-section .image-grid-4 img:nth-child(1),
    .mission-section .image-grid-4 img:nth-child(3) {
        transform: translateY(26px);
    }
}




.mission-section .image-grid-4 img {
    position: relative;
    z-index: 2;
}

.mission-section .image-grid-4 img::after {
    content: "";
    position: absolute;
    top: 18px;      /* offset downward */
    left: 22px;     /* offset rightward */
    width: 100%;
    height: 100%;
    border-radius: 20px;

    /* HARSH directional shadow shape */
    background: rgba(0,0,0,0.75);

    filter: blur(35px);

    z-index: -1;

    /* >>> THIS is what makes the top/left "cut off" <<< */
    clip-path: inset(-40px 0 0 -40px);
}




/* Make the two columns behave like the comp */
.story-section .image-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr); /* widens text column */
    column-gap: 80px;
    align-items: center; /* vertical centering of the text */
}

/* Keep the image just filling its column */
.story-section .image-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* Control the text block width & centering */
.story-section .content-block {
    max-width: 620px;      /* makes the text column feel “full” like the comp */
    margin: 0 auto 0 0;    /* hugs the image side instead of drifting right */
}

/* Tighter heading/body spacing to match comp */
.story-section .content-block h2 {
    margin-bottom: 28px;
}

.story-section .content-text p {
    margin-bottom: 18px;
}



/* On tablet & down, go back to normal so it doesn’t get weird */
@media (max-width: 1023.98px) {

/* OUR MISSION – keep a left gutter on laptop widths */
.mission-section .container {
    padding-left: 60px;
    padding-right: 60px;
}
}
/* On big desktop you can bump it a bit more if you want */
@media (min-width: 1440px) {
    .mission-section .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* On tablet & down, let GeneratePress handle the default padding */
@media (max-width: 1023.98px) {
    .mission-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}
/* =========================
   LAPTOP TWEAKS (≈1200–1700px)
   ========================== */
@media (min-width: 1200px) and (max-width: 1700px) {


	/* 2) “OUR MISSION” — restore left margin / breathing room */
	.mission-section .container {
		padding-left: 80px;
		padding-right: 80px;
	}

	.mission-section .content-block {
		max-width: 640px;            /* keeps the text column from feeling too narrow */
	}

	.mission-section .content-block h2 {
		margin-left: 0;              /* align with body copy */
		margin-bottom: 24px;
	}
}
/********************************************
 * FINAL FIXES – OUR MISSION + BORN SECTION
 ********************************************/

/* 1) OUR MISSION – keep 4-up grid from overlapping text */
@media (min-width: 1024px) {

    /* Give the text and images a clear 50/50 split */
    .mission-section .image-content-grid {
        grid-template-columns: minmax(0, 50%) minmax(0, 50%);
        align-items: center;
    }

    /* Make the 4-up grid shrink with its column instead of using fixed pixel width */
    .mission-section .image-grid-4 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* no fixed 360px columns */
        grid-auto-rows: 220px;                           /* consistent height */
        column-gap: 26px;
        row-gap: 26px;
        justify-content: flex-end;                       /* tuck toward the right */
    }

    /* Images keep their card look but no layout overflow */
    .mission-section .image-grid-4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        box-shadow:
            18px 26px 40px rgba(0, 0, 0, 0.75),
            40px 70px 90px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.35);
    }
}



/* OUR MISSION – lock in a non-overlapping 2-column layout */
.mission-section .image-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}
/* === BORN FROM EXPERIENCE – CLEAN LAYOUT =================== */

.story-section {
    background: #ffffff;
    padding: 120px 0;              /* adds breathing room top/bottom */
}

.story-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;               /* horizontal padding so text isn't on the edge */
}

/* Two columns: big image left, text right */
.story-section .image-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    gap: 80px;
    align-items: center;           /* vertically center text vs image */
}

/* Left image column */
.story-section .image-block {
    margin: 0;                     /* kill stray top/bottom margins */
}

.story-section .single-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 40px 40px 0;  /* rounded right side only, like the comp */
}

.story-section .single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: none;              /* removes card shadow from global rule */
    background: transparent;
}

/* Right text column */
.story-section .content-block {
    max-width: 640px;
}

/* Heading + red bar */
.story-section .content-block h2 {
    position: relative;
    padding-left: 22px;
    margin-bottom: 28px;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 1.6px;
}

.story-section .content-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: -6px;
    width: 4px;
    background-color: var(--color-primary);
}

/* Paragraphs */
.story-section .content-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* --------- Responsive tweaks --------- */
@media (max-width: 1023.98px) {

    .story-section {
        padding: 80px 0;
    }

    .story-section .container {
        padding: 0 30px;
    }

    .story-section .image-content-grid {
        grid-template-columns: 1fr;    /* stack image over text */
        gap: 50px;
    }

    .story-section .single-image {
        height: auto;
        border-radius: 30px;
    }

    .story-section .single-image img {
        height: auto;
    }

    .story-section .content-block {
        max-width: none;
    }

    .story-section .content-block h2 {
        font-size: 36px;
    }

    .story-section .content-block p {
        font-size: 16px;
    }
}

	/************************************
 * FINAL OUR MISSION SECTION OVERRIDES
 ************************************/

/* Base section + background */
.mission-section {
    background:
        url('https://thedeconprojec.wpenginepowered.com/wp-content/uploads/2025/12/Retangulo-1.png')
        center center / cover no-repeat #e0e0e0 !important;
    padding: 120px 60px;
}

.mission-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Desktop / laptop layout */
@media (min-width: 1024px) {

    /* Two clear columns – text left, images right, no overlap */
    .mission-section .image-content-grid {
        display: grid;
        grid-template-columns: minmax(0, 48%) minmax(0, 52%);
        gap: 60px;
        align-items: center;
    }

    .mission-section .content-block {
        max-width: 640px;
    }

    /* 2×2 image grid that shrinks with its column (no fixed px width) */
    .mission-section .image-grid-4 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
        column-gap: 26px;
        row-gap: 26px;
        justify-content: flex-end;
    }
}

/* Image cards */
.mission-section .image-grid-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    box-shadow:
        18px 26px 40px rgba(0, 0, 0, 0.75),
        40px 70px 90px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Kill the old pseudo-shadow that was causing weird clipping */
.mission-section .image-grid-4 img::after {
    content: none !important;
}

/* Tablet & down – stack nicely */
@media (max-width: 1023.98px) {

    .mission-section {
        padding: 80px 20px;
    }

    .mission-section .container {
        padding: 0 20px;
    }

    .mission-section .image-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: flex-start;
    }

    .mission-section .image-grid-4 {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
        column-gap: 20px;
        row-gap: 20px;
    }
}

	
	
	
	
	
	
	/* =========================================================
   MOBILE HEADER + NAV OVERLAY (fix hero/menu collision)
   ========================================================= */
@media (max-width: 768px) {

  /* Ensure header stays above hero */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
  }

  /* Give the page content room for the fixed header */
  body.home .hero-section,
  body.page-template-template-homepage .hero-section,
  .hero-section {
    padding-top: 84px; /* adjust if your header is taller/shorter */
  }

  /* --- Mobile menu as a full-screen overlay --- */
  /* Assumes your theme toggles a class on header when menu opens.
     Common options are: .nav-open, .menu-open, .toggled
     We support all three here. */

  .site-header .primary-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    padding: 96px 26px 26px; /* room for header/logo */
    z-index: 1001;

    /* hidden by default */
    transform: translateX(-100%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }

  .site-header.nav-open .primary-menu,
  .site-header.menu-open .primary-menu,
  .site-header.toggled .primary-menu {
    transform: translateX(0);
  }

  /* Menu list formatting */
  .site-header .primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .site-header .primary-menu a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* When menu is open, lock page scroll (works if body gets a class) */
  body.nav-open,
  body.menu-open {
    overflow: hidden;
  }

  /* --- Hero typography fixes --- */
  .hero-section h1,
  .hero-title {
    font-size: clamp(26px, 7vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin: 0 0 12px;
  }

  .hero-section p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 34ch;
  }

  /* Optional: add a subtle overlay for readability on busy images */
  .hero-section {
    position: relative;
  }
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    pointer-events: none;
    z-index: 0;
  }
  .hero-section > * {
    position: relative;
    z-index: 1;
  }
}

/* =========================================================
   MOBILE HAMBURGER NAV
   ========================================================= */

/* Desktop: normal nav, hide hamburger */
@media (min-width: 769px) {
  .menu-toggle { display: none; }
  .main-navigation { display: flex; }
}

/* Mobile: show hamburger, hide nav until opened */
@media (max-width: 768px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
  }

  /* Logo sizing */
  .site-logo img {
    max-width: 140px;
    height: auto;
    display: block;
  }

  /* Hamburger button */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-toggle__icon {
    font-size: 32px;
    line-height: 1;
	  
  }
	.menu-toggle__icon:hover, .menu-toggle__icon:focus {
		color:#fff !important;
	}
  /* Nav panel hidden by default */
  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 14px 16px 18px;
    display: none;
  }

  /* When open */
  .site-header.is-menu-open .main-navigation {
    display: block;
  }

  /* Menu list styling */
  .primary-menu {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .primary-menu a {
    display: block;
    padding: 10px 2px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .primary-menu a:hover {
    color: #ff0000;
  }

  /* Donate button in menu */
  .header-donate-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
  }
}
	@media (max-width: 768px) {
  .site-header { z-index: 1002; } /* higher than menu overlay */
  .menu-toggle {
    position: relative;
    z-index: 1003; /* highest so it stays clickable */
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: block !important; }
}
	
	
	
@media (max-width: 768px) {

  /* Keep toggle clickable */
  .site-header { z-index: 1003; }
  .menu-toggle { position: relative; z-index: 1004; }

  /* Overlay */
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    z-index: 1001;
  }

  /* Default hidden */
  #primary-menu {
    display: none;
  }

  /* Centered panel */
  .site-header.toggled #primary-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    position: fixed;
    top: 45%;
    left: 38%;
    transform: translate(-50%, -50%);

    width: min(86vw, 420px);
    max-height: min(100vh, 520px);
    overflow: auto;

    padding: 26px 18px;
    margin: 0;
    list-style: none;

    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.6);

    z-index: 1002; /* above overlay */
  }

  .site-header.toggled #primary-menu > li {
    width: 100%;
    text-align: center;
  }

  .site-header.toggled #primary-menu a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;

    color: #fff;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-header.toggled #primary-menu a:hover,
  .site-header.toggled #primary-menu a:focus {
    background: rgba(255,255,255,0.08);
  }
}
@media (max-width: 768px) {
  /* Overlay sits behind everything */
  body.menu-open::before {
    z-index: 9000 !important;
  }

  /* Menu panel above overlay */
  .site-header.toggled #primary-menu {
    z-index: 9001 !important;
  }

  /* Header + hamburger always on top (so you can close it) */
  #site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9002 !important;
  }

  #site-header .menu-toggle {
    position: relative;
    z-index: 9003 !important;
  }
}
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll !important;
    background-position: center top; /* optional, usually feels better on mobile */
  }
}

	
	@media (max-width: 768px) {


  /* Stop the fixed 480px block from overflowing */
  .danger-section .image-grid-2 {
    width: 100% !important;
    max-width: 340px;          /* tweak: 320–360 depending on taste */
    height: 260px !important;  /* keeps the overlap look */
    margin: 0 auto;
  }

  /* Scale the cards down so they fit */
  .danger-section .image-grid-2 img {
    width: 70% !important;     /* cards scale with container */
    max-width: 240px;
    height: 260px !important;
  }

  /* Reduce the “lift” so it doesn’t run off-screen */
  .danger-section .image-grid-2 img:last-child {
    top: -18px !important;
  }

  /* Kill the extra-wide pseudo shadow that can extend past the viewport */
  .danger-section .image-block::before {
    left: 0 !important;
    right: 0 !important;
  }
}

@media (max-width: 768px) {

  /* Don’t let the desktop donate button sit in the header row */
  #site-header .header-donate-btn {
    display: none !important;
  }

  /* Style the donate link when we inject it into the menu list */

}
@media (max-width: 768px) {
	.footer-cta-panel {
		background-position:right !important;
		text-align:right !important;
	}
	.footer-cta-actions {
		justify-content:right;
	}
  /* Base mobile nav layout */
  #site-header .main-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Hide donate in closed state */
  #site-header .header-donate-btn {
    display: none;
  }

  /* When menu is open, stack UL + donate button */
  #site-header.toggled .main-navigation {
    gap: 16px;
  }

  /* Show donate under menu items */
  #site-header.toggled .header-donate-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin: 6px auto 0;
  }

  /* Ensure menu panel sizing stays centered */
  #site-header.toggled #primary-menu {
    width: min(92vw, 360px);
  }
}
@media (min-width: 1024px) {
  .hidden-threat-section .content-text {
    column-count: 2;
    column-gap: 48px;
  }

  .hidden-threat-section .content-text p {
    break-inside: avoid;
    margin-bottom: 0;
  }
}
/* Hidden Threat – force two columns on desktop */
@media (min-width: 1024px) {
  .image-content-section.hidden-threat-section .content-text {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    column-gap: 48px !important;
  }

  .image-content-section.hidden-threat-section .content-text p {
    margin: 0 !important;
  }
}

/* Quote mark = text glyph (like PSD), stacked on 2 lines */
.quote-text::before{
  content: "\"\A\"";          /* a straight double-quote on 2 lines */
  white-space: pre;           /* makes \A render as a line break */
  display: block;

  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 120px;
  line-height: 0.65;          /* tighten so it looks like the comp */
  letter-spacing: -0.06em;    /* optional: pulls the shape a bit tighter */
  color: #ffffff;

  /* keep your positioning rules if you already have them */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}
/* ===== Quote marks like the PSD (two slanted bars) ===== */
.quote-text{
  position: relative; /* anchor ::before */
}

.quote-text::before{
  content: "";                 /* IMPORTANT: not a glyph */
  display: block;
  width: 14px;                 /* bar width */
  height: 54px;                /* bar height */
  background: #fff;
  margin: 0 auto 26px;         /* centers + spacing above quote text */

  /* make the 2nd bar */
  box-shadow: 22px 0 0 #fff;

  /* slant like the design */
  transform: skewX(-12deg);
}
/* GiveWP iframe: always full width */
#give-donate-modal iframe {
  width: 100% !important;
  min-height: 800px;
  border: 0;
}

/* Modal container */
#give-donate-modal {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
}

/* Magnific popup sizing */
.mfp-content {
  max-width: 760px;
  margin: 0 auto;
}
/* =========================================================
   MOBILE MENU – SINGLE OVERLAY + CENTERED PANEL (FINAL)
   ========================================================= */
@media (max-width: 768px) {

  /* ---- 1) Single page overlay ---- */
  body.menu-open::before{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    z-index: 9000;
  }

  /* ---- 2) Make sure we are NOT also styling the UL as a panel ---- */
  #site-header.toggled #primary-menu{
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-height: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* ---- 3) The PANEL is the nav container (centered) ---- */
  #site-header .main-navigation{
    display: none !important;              /* closed */
    background: transparent !important;    /* prevents “second overlay” look */
    border: 0 !important;
    padding: 0 !important;
  }

  #site-header.toggled .main-navigation{
    display: flex !important;
    flex-direction: column;
    align-items: center;

    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: min(86vw, 420px) !important;
    max-height: min(80vh, 560px) !important;
    overflow: auto !important;

    padding: 26px 18px !important;
    background: rgba(0,0,0,0.72) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 30px 90px rgba(0,0,0,0.6) !important;

    z-index: 9001 !important; /* above overlay */
  }

  /* ---- 4) Menu list formatting inside the panel ---- */
  #site-header.toggled #primary-menu{
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    list-style: none;
    width: 100%;
  }

  #site-header.toggled #primary-menu > li{
    width: 100%;
    text-align: center;
  }

  #site-header.toggled #primary-menu a{
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Donate button pinned to bottom of panel */
  #site-header .header-donate-btn{ display: none !important; }
  #site-header.toggled .header-donate-btn{
    display: block !important;
    width: 100%;
    margin-top: auto; /* pushes it down */
    text-align: center;
    padding: 14px 18px;
    border-radius: 10px;
  }

  /* Keep header + hamburger always clickable */
  #site-header{
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 9002 !important;
  }
  #site-header .menu-toggle{
    position: relative;
    z-index: 9003 !important;
  }
}
.image-content-section .single-img {
	    border-radius: 20px;
}