.elementor-25 .elementor-element.elementor-element-3d20d4b{--display:flex;}.elementor-25 .elementor-element.elementor-element-3d20d4b.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-25 .elementor-element.elementor-element-b6a21d2.elementor-element{--flex-grow:1;--flex-shrink:0;}@media(min-width:768px){.elementor-25 .elementor-element.elementor-element-3d20d4b{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-b6a21d2 *//* =========================================================
   JOSEPH COFFELT DESIGNS – HOME PAGE
   Colours: Black, White, Royal Blue
   Font: QT Bookman Bold Italic (Custom Font)
   ========================================================= */

/* -----------------------------------------------
   GLOBAL
   ----------------------------------------------- */

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* FORCE every text element on the site to use the font */
body, 
html,
.jcd-home,
.jcd-home * {
    font-family: "QTBookmann-BoldItalic", serif !important;
    font-weight: normal !important;
    font-style: italic !important;
    color: #ffffff;
}

/* Utility */
.jcd-text-center {
    text-align: center;
}

.jcd-section-title-center {
    text-align: center;
}

/* -----------------------------------------------
   HEADER / MENU DROPDOWN
   ----------------------------------------------- */

.jcd-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.35));
    color: #ffffff;
}

.jcd-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo text */
.jcd-logo {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
}

/* Wrapper to position the menu dropdown */
.jcd-menu-wrapper {
    position: relative;
}

/* Hidden checkbox for toggling */
.jcd-menu-toggle {
    display: none;
}

/* "Menu" button */
.jcd-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.6rem;
    border-radius: 999px;
    background: #1c3b8b;
    color: #ffffff;
    border: 2px solid #1c3b8b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.jcd-menu-button:hover {
    background: #2449a9;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
}

/* Dropdown panel */
.jcd-menu-dropdown {
    position: absolute;
    right: 0;
    margin-top: 0.5rem;
    background: #1c3b8b;
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
    min-width: 220px;
    padding: 0.4rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Individual menu links */
.jcd-menu-dropdown a {
    display: block;
    padding: 0.55rem 1.4rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.jcd-menu-dropdown a:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* When checkbox is checked, show dropdown */
.jcd-menu-toggle:checked + .jcd-menu-button + .jcd-menu-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* -----------------------------------------------
   HERO
   ----------------------------------------------- */

.jcd-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero background video */
.jcd-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Gradient + vignette overlay */
.jcd-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 0.0) 45%,
            rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.9),
            rgba(40, 40, 40, 0.85),
            rgba(0, 0, 0, 0.95));
}

/* Hero content */
.jcd-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 4.5rem 1.5rem 5rem; /* extra top padding for fixed header */
    color: #ffffff;
}

.jcd-hero-heading {
    font-size: clamp(2.3rem, 3vw + 1.8rem, 3.4rem);
    letter-spacing: 0.06em;
    margin-bottom: 1.4rem;
}

.jcd-hero-tagline {
    font-size: clamp(1.4rem, 1.3vw + 1rem, 1.8rem);
    margin-bottom: 1.5rem;
}

.jcd-hero-description {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 1.2rem;
    line-height: 1.7;
}

.jcd-hero-subline {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    margin-bottom: 2.4rem;
}

/* Hero buttons */
.jcd-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

/* -----------------------------------------------
   BUTTONS
   ----------------------------------------------- */

.jcd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* Royal blue primary */
.jcd-btn-primary {
    background: #1c3b8b;
    border-color: #1c3b8b;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.jcd-btn-primary:hover {
    background: #2449a9;
    border-color: #2449a9;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

/* Outline */
.jcd-btn-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
}

.jcd-btn-outline:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Light buttons */
.jcd-btn-light {
    background: #ffffff;
    color: #101322;
    border-color: #ffffff;
}

.jcd-btn-light:hover {
    background: #dfe6ff;
    border-color: #dfe6ff;
    transform: translateY(-2px);
}

.jcd-btn-outline-light {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.jcd-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ICON BUTTONS */
.jcd-btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.jcd-btn-icon-symbol {
    font-size: 1.1em;
    line-height: 1;
}

/* -----------------------------------------------
   GENERIC SECTION STYLES
   ----------------------------------------------- */

.jcd-section {
    padding: 5rem 1.5rem;
}

.jcd-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.jcd-section-narrow {
    max-width: 980px;
}

.jcd-section-title {
    font-size: clamp(2rem, 2.2vw + 1.4rem, 2.6rem);
    margin-bottom: 1.5rem;
}

.jcd-section-title-light {
    color: #ffffff;
}

.jcd-section-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #dcdcdc;
}

/* -----------------------------------------------
   WELCOME SECTION
   ----------------------------------------------- */

.jcd-welcome {
    background: #000000;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.jcd-welcome .jcd-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.jcd-welcome-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f0f0f0;
    max-width: 620px;
    margin-bottom: 1.2rem;
}

.jcd-welcome-image {
    background-image: url("http://joecoffeltdesigns.com/wp-content/uploads/2025/11/Screenshot-2025-11-17-000527.png");
    background-size: cover;
    background-position: center right;
    min-height: 320px;
}

/* Welcome section – About button spacing */
.jcd-welcome-actions {
    margin-top: 2rem;
}

/* -----------------------------------------------
   COMMITMENT SECTION
   ----------------------------------------------- */

.jcd-commitment {
    background: #0a0a0a;
}

.jcd-commitment .jcd-section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
    background: #101010;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.6);
}

.jcd-commitment-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.jcd-commitment-image {
    border-radius: 20px;
    overflow: hidden;
    min-height: 260px;
    background-image: url("http://joecoffeltdesigns.com/wp-content/uploads/2025/11/Picture1-1-scaled.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* -----------------------------------------------
   FEATURED PRODUCTS
   ----------------------------------------------- */

.jcd-featured-products {
    background: #050509;
    padding: 5rem 1.5rem;
}

.jcd-section-title-center {
    text-align: center;
    font-size: clamp(2.2rem, 2.4vw + 1.4rem, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: "QTBookmann-BoldItalic", serif;
}

.jcd-section-intro-center {
    text-align: center;
    color: #dcdcdc;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Grid */
.jcd-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.2rem;
}

/* Individual Card */
.jcd-featured-card {
    background: #0a0d1a;
    border-radius: 18px;
    padding-bottom: 2rem;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease;
}

.jcd-featured-card:hover {
    transform: translateY(-6px);
}

/* Image */
.jcd-featured-image {
    width: 100%;
    height: 220px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background-size: cover;
    background-position: center;
}

/* Title */
.jcd-featured-title {
    font-family: "QTBookmann-BoldItalic", serif;
    font-size: 1.4rem;
    padding: 1.5rem 1.6rem 0.6rem;
}

/* Text */
.jcd-featured-text {
    color: #e1e3f0;
    line-height: 1.7;
    padding: 0 1.6rem 1rem;
    font-size: 1rem;
}

/* Link */
.jcd-featured-link {
    display: inline-block;
    color: #99b3ff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0 1.6rem;
    border-bottom: 1px solid transparent;
}

.jcd-featured-link:hover {
    border-color: #99b3ff;
}

/* More Button */
.jcd-featured-button-wrap {
    text-align: center;
    margin-top: 3rem;
}

.jcd-featured-more-btn {
    padding: 1rem 2.6rem;
    font-size: 1.1rem;
    border-radius: 999px;
}

/* -----------------------------------------------
   PROCESS
   ----------------------------------------------- */

.jcd-process {
    background: #050509;
}

.jcd-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.jcd-step {
    background: #101322;
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.jcd-step-number {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #1c3b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.jcd-step-title {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.jcd-step-text {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #dde3ff;
}

.jcd-process-cta {
    margin-top: 3rem;
    text-align: center;
}

/* -----------------------------------------------
   TESTIMONIALS
   ----------------------------------------------- */

.jcd-testimonials {
    background: #050506;
}

.jcd-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.jcd-testimonial {
    background: #101010;
    border-radius: 18px;
    padding: 2rem 2.1rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.jcd-testimonial blockquote {
    margin: 0 0 1.2rem;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #f0f0f0;
}

.jcd-testimonial figcaption {
    font-size: 0.95rem;
    color: #aeb5ff;
}

/* -----------------------------------------------
   CONTACT CTA
   ----------------------------------------------- */

.jcd-contact-cta {
    background: radial-gradient(circle at top left, #2449a9, #000000 55%);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.jcd-contact-cta-inner {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.jcd-contact-text {
    max-width: 520px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #f3f6ff;
    margin-top: 0.7rem;
}

.jcd-contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* -----------------------------------------------
   FOOTER
   ----------------------------------------------- */

.jcd-footer {
    background: #020205;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.jcd-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
    gap: 2.2rem;
}

.jcd-footer-logo {
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jcd-footer-text {
    font-size: 0.95rem;
    color: #d0d4ff;
    margin-top: 0.7rem;
}

.jcd-footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.6rem;
}

.jcd-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.jcd-footer-links li {
    margin-bottom: 0.45rem;
}

.jcd-footer-links a {
    color: #c8d0ff;
    text-decoration: none;
}

.jcd-footer-links a:hover {
    text-decoration: underline;
}

.jcd-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    color: #a3a6c4;
}

/* -----------------------------------------------
   RESPONSIVE
   ----------------------------------------------- */

@media (max-width: 1024px) {
    .jcd-welcome .jcd-section-inner,
    .jcd-commitment .jcd-section-inner {
        grid-template-columns: 1fr;
    }

    .jcd-commitment .jcd-section-inner {
        padding: 2.2rem 2rem;
    }

    .jcd-welcome-image {
        min-height: 260px;
    }

    .jcd-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jcd-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .jcd-featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .jcd-header-inner {
        padding: 0.6rem 1rem;
    }

    .jcd-hero-content {
        padding-top: 5.5rem;
        padding-bottom: 4rem;
    }

    .jcd-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .jcd-step-grid {
        grid-template-columns: 1fr;
    }

    .jcd-contact-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .jcd-contact-buttons {
        width: 100%;
    }

    .jcd-contact-buttons .jcd-btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .jcd-footer-inner {
        grid-template-columns: 1fr;
    }

    /* Dropdown full width on small screens */
    .jcd-menu-dropdown {
        left: 0;
        right: 0;
        min-width: 0;
    }

    .jcd-menu-dropdown a {
        padding: 0.7rem 1.2rem;
    }
}/* End custom CSS */