/* =========================================
   HERO / MINIMAL SPLIT THEME
   Clean, Direct, High Impact
   ========================================= */

/* Hero Container - Split Layout */
.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Accounts for fixed header */
    background: transparent;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Typography - Massive & Bold */
.hero-headline {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    color: var(--color-accent);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--color-text-gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Minimal Badge */
.min-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(var(--color-accent), 0.1);
    /* fallback if variable acts up */
    background: color-mix(in srgb, var(--color-accent), transparent 90%);
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    color: var(--color-accent);
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.min-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Integrated Stats Row */
.hero-stats-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
}

.hero-stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-item span {
    font-size: 0.85rem;
    color: var(--color-text-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Fira Code', monospace;
}

.light-theme .hero-stat-item strong {
    color: var(--color-text-black);
}

/* Massive CTA */
.btn-massive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--color-accent);
    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 0;
    /* Boxy look */
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.btn-massive:hover {
    transform: translateY(-4px);
    box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.1);
}

.light-theme .btn-massive:hover {
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

/* Right Column - Profile Image */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.profile-clean {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: filter 0.5s;
    box-shadow: 20px 20px 0 var(--color-border-gray-800);
    border: 1px solid var(--color-border-gray-800);
}

.profile-clean:hover {
    filter: grayscale(0%);
}

/* Background Abstract Shape */
.bg-shape {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: rgba(17, 17, 17, 0.5);
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats-row {
        justify-content: center;
        border-left: none;
        border-top: 4px solid var(--color-accent);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .bg-shape {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        clip-path: none;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .profile-clean {
        max-width: 300px;
        margin: 0 auto;
        box-shadow: 12px 12px 0 var(--color-border-gray-800);
    }
}

/* =========================================
   CSUME V3 PROJECT SECTION PORT
   Exact replication of the grid and hover effects
   ========================================= */

.d2c_project_wrapper {
    padding: 80px 0;
}

.d2c_img_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

/* Image Dimensions matching aspect ratios */
.d2c_large_img {
    height: 700px;
}

.d2c_small_img {
    height: 338px;
}

@media (max-width: 991px) {

    .d2c_large_img,
    .d2c_small_img {
        height: 400px;
    }
}

/* Image Fit */
.d2c_img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay - Initially Visible (Darken) */
.d2c_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 17, 26, 0.80) 0%, rgba(13, 17, 26, 0.20) 100%);
    opacity: 1;
    transition: 0.4s all;
}

/* The Card Content - Initially Hidden */
.d2c_card_reveal {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s all;
    /* Card Styles from csume */
    padding: 1px;
    background: linear-gradient(180deg, rgba(94, 106, 210, 0.5) 0%, rgba(19, 23, 34, 0) 90%);
}

.d2c_card_child {
    height: 100%;
    padding: 10px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
}

.d2c_card_child_two {
    height: 100%;
    padding: 1px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
}

.d2c_card_child_three {
    height: 100%;
    padding: 25px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(120, 119, 198, 0.17) 0%, rgba(13, 17, 26, 0) 100%), #131722;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover Effects */
.d2c_img_wrapper:hover .d2c_overlay {
    opacity: 0;
}

.d2c_img_wrapper:hover .d2c_card_reveal {
    opacity: 1;
}

/* Typography map to csume */
.d2c_project_title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.d2c_project_desc {
    color: #EAFBF2;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 26px;
    line-height: 1.5;
}

.d2c_sub_title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.d2c_list_item {
    color: #EAFBF2;
    padding: 5px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.d2c_list_icon {
    color: #fff;
    font-size: 10px;
}