/* =============================================================
   Delta Cos Menus - Elementor Widgets CSS
   Colors: Red #cc0000 | Yellow #ffd700 | White #ffffff
   ============================================================= */

/* ── GLOBAL / CONTAINER ─────────────────────────────────────── */
.dcm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dcm-section {
    padding: 60px 0;
}

.dcm-section-alt {
    background-color: #fff8f8;
}

.dcm-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    padding-left: 14px;
    border-left: 4px solid #cc0000;
    line-height: 1.3;
}

.dcm-section-sub {
    font-size: 16px;
    color: #666;
    margin: 0 0 35px 0;
    padding-left: 18px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.dcm-btn-primary {
    display: inline-block;
    background-color: #ffd700;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.dcm-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    color: #1a1a1a;
}

.dcm-btn-secondary {
    display: inline-block;
    background-color: #cc0000;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.dcm-btn-secondary:hover {
    background-color: #aa0000;
    color: #ffffff;
}

/* ── HEADER WIDGET ───────────────────────────────────────────── */
.dcm-header-wrap {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.dcm-topbar {
    background-color: #cc0000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}

.dcm-header-main {
    padding: 18px 0;
}

.dcm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dcm-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}

.dcm-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #cc0000;
    text-decoration: none;
    line-height: 1.1;
}

.dcm-logo-img {
    max-height: 55px;
    width: auto;
}

.dcm-logo-tagline {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.dcm-nav {
    display: flex;
    align-items: center;
}

.dcm-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
}

.dcm-nav-list li a {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.dcm-nav-list li a:hover {
    color: #cc0000;
    background-color: #fff0f0;
}

.dcm-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #cc0000;
    padding: 4px 8px;
}

/* ── HERO SECTION ────────────────────────────────────────────── */
.dcm-hero {
    background-color: #cc0000;
    padding: 80px 0;
    text-align: center;
}

.dcm-hero-inner {
    max-width: 760px;
}

.dcm-hero-heading {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 18px 0;
    line-height: 1.2;
}

.dcm-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 32px 0;
    line-height: 1.7;
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.dcm-stats-bar {
    background-color: #ffd700;
    padding: 24px 0;
}

.dcm-stats-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    text-align: center;
}

.dcm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 120px;
}

.dcm-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #cc0000;
    line-height: 1;
}

.dcm-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── INTRO SECTION ───────────────────────────────────────────── */
.dcm-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 860px;
}

.dcm-intro-text p {
    margin: 0 0 16px 0;
}

/* ── CATEGORIES SECTION ──────────────────────────────────────── */
.dcm-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dcm-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 16px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.dcm-cat-card:hover {
    border-color: #cc0000;
    box-shadow: 0 4px 16px rgba(204,0,0,0.12);
    transform: translateY(-3px);
}

.dcm-cat-icon {
    font-size: 32px;
    line-height: 1;
}

.dcm-cat-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.dcm-cat-count {
    font-size: 12px;
    color: #cc0000;
    font-weight: 600;
    background: #fff0f0;
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── FEATURED MENUS ──────────────────────────────────────────── */
.dcm-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dcm-featured-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px 22px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}

.dcm-featured-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.dcm-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffd700;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dcm-featured-icon {
    font-size: 36px;
    line-height: 1;
}

.dcm-featured-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.dcm-featured-cta {
    font-size: 13px;
    color: #cc0000;
    font-weight: 600;
}

/* ── LATEST POSTS ────────────────────────────────────────────── */
.dcm-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dcm-post-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}

.dcm-post-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.dcm-post-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
}

.dcm-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dcm-post-card:hover .dcm-post-thumb img {
    transform: scale(1.04);
}

.dcm-post-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dcm-post-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #cc0000;
    background: #fff0f0;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

.dcm-post-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.dcm-post-date {
    font-size: 12px;
    color: #999;
}

/* ── TRUST SECTION ───────────────────────────────────────────── */
.dcm-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.dcm-trust-card {
    padding: 30px 22px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: box-shadow 0.2s;
}

.dcm-trust-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.dcm-trust-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
    color: #cc0000;
}

.dcm-trust-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.dcm-trust-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── AUTHOR SECTION ──────────────────────────────────────────── */
.dcm-author-section {
    padding: 50px 0;
}

.dcm-author-box {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.dcm-author-photo {
    flex-shrink: 0;
}

.dcm-author-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffd700;
}

.dcm-author-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 4px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: #bbb;
}

.dcm-author-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dcm-author-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cc0000;
    background: #fff0f0;
    padding: 3px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

.dcm-author-name {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 4px 0 0 0;
}

.dcm-author-title {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.dcm-author-bio {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin: 8px 0 0 0;
    max-width: 700px;
}

/* ── FOOTER WIDGET ───────────────────────────────────────────── */
.dcm-footer-wrap {
    font-size: 14px;
}

.dcm-footer-main {
    background-color: #1a1a1a;
    padding: 55px 0 40px;
    color: #cccccc;
}

.dcm-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
}

.dcm-footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: #ffd700;
    margin: 0 0 14px 0;
}

.dcm-footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    margin: 0;
}

.dcm-footer-col-heading {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #cc0000;
    display: inline-block;
}

.dcm-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dcm-footer-links li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dcm-footer-links li a::before {
    content: '›';
    color: #cc0000;
    font-size: 16px;
    font-weight: 700;
}

.dcm-footer-links li a:hover {
    color: #ffd700;
}

.dcm-footer-bottom {
    background-color: #cc0000;
    padding: 14px 0;
}

.dcm-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 13px;
}

.dcm-footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    max-width: 500px;
    text-align: right;
}

/* ── EDITOR PLACEHOLDER ──────────────────────────────────────── */
.dcm-editor-placeholder {
    border: 2px dashed #ddd;
    border-radius: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media ( max-width: 1024px ) {
    .dcm-cat-grid,
    .dcm-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dcm-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media ( max-width: 768px ) {
    .dcm-hero-heading { font-size: 26px; }
    .dcm-hero { padding: 50px 0; }
    .dcm-section { padding: 40px 0; }
    .dcm-section-title { font-size: 22px; }

    .dcm-cat-grid,
    .dcm-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dcm-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dcm-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dcm-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dcm-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .dcm-footer-disclaimer {
        text-align: center;
    }

    .dcm-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
    }

    .dcm-author-label { align-self: center; }

    .dcm-stats-inner {
        gap: 24px;
    }

    .dcm-header-inner {
        flex-wrap: wrap;
    }

    .dcm-hamburger { display: block; }

    .dcm-nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #eee;
        padding: 10px 0;
    }

    .dcm-nav-list.dcm-open { display: flex; }

    .dcm-nav-list li a { padding: 10px 20px; }
}

@media ( max-width: 480px ) {
    .dcm-cat-grid,
    .dcm-featured-grid,
    .dcm-posts-grid,
    .dcm-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dcm-hero-heading { font-size: 22px; }
}
