/*
Theme Name: Darren Reid Portfolio
Description: Professional video editor and digital marketing strategist portfolio
Author: Darren Reid
Version: 1.1
Tags: portfolio, video-editor, marketing, modern, responsive
*/

/* ═══ GLOBAL JUNK REMOVAL: ZIK, DEMO, PROMO ═══ */
iframe[src*="zik"],
div[class*="zik"],
section[class*="zik"],
div[id*="zik"],
.overflow-x-hidden:not(.site-header):not(.ip-page):not(.cr-page),
body > div[class*="bg-gray-50"],
body > section[class*="bg-gray-50"],
div.relative.isolate.flex.items-center.gap-x-6,
[class*="announcement-bar"],
[class*="promo-banner"] {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* ═══ DEFAULT PAGE CLEANUP ═══ */
.page-default .page-header {
    padding: 3rem 0 1.5rem;
}

.page-default .page-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.15;
}

.page-default .page-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    max-width: 720px;
}

.page-default .page-body h2,
.page-default .page-body h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1f1f1f;
}

.page-default .page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.page-default .page-body a {
    color: #c8753d;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.portfolio-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    margin: -2rem -2rem 4rem -2rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Value Proposition Section */
.value-proposition {
    margin: 4rem 0;
    text-align: center;
}

.value-proposition h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: left;
}

.problem-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.solution-statement {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
}

/* Current Services Section */
.current-services {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Exploring Areas Section */
.exploring-areas {
    margin: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exploration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.exploration-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.exploration-item:hover {
    transform: translateY(-5px);
}

.exploration-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.explore-link {
    display: inline-block;
    margin-top: 1rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.explore-link:hover {
    color: #764ba2;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-align: center;
    margin: 4rem 0 3rem 0;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Video Portfolio Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.video-card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-card-content {
    padding: 2rem;
}

.video-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.cta-button.secondary:hover {
    background: #667eea;
    color: white;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-item h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-item p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.experience-item p:last-child {
    font-weight: 600;
    color: #27ae60;
    background: #ecf87f;
    background: linear-gradient(135deg, #ecf87f 0%, #32cd32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem 0 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0 0 0;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 0;
}

.resume-header-clone {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.site-footer .name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2px;
    color: white;
}

.site-footer .tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer .contact-info {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #cbd5e1;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.site-footer .contact-info a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.site-footer .contact-info a:hover {
    color: white;
}

.site-footer .dot {
    opacity: 0.5;
}

.site-footer .copyright {
    font-size: 0.75rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* Projects Page Spacing Cleanup */
.page-id-186 .portfolio-container {
    padding-top: 1rem;
}

.page-id-186 .page-header {
    margin-bottom: 0.75rem;
}

.page-id-186 .page-title {
    margin-bottom: 0;
}

.page-id-186 .page-body.entry-content.projects-lede {
    margin-top: 0;
}

.page-id-186 .page-body.entry-content.projects-lede > .overflow-x-hidden.bg-gray-50 {
    display: none;
}

.page-id-186 .page-body.entry-content.projects-lede > .container.max-w-6xl {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-container {
        padding: 1rem;
    }
    
    .main-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 4rem 1rem;
        margin: -1rem -1rem 3rem -1rem;
    }
    
    .value-proposition h2 {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience,
    .current-services {
        padding: 2rem 1rem;
    }
    
    .video-card-content,
    .experience-item {
        padding: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        display: block;
        text-align: center;
        margin: 0.5rem 0;
    }

    .page-id-186 .page-body.entry-content.projects-lede > .container.max-w-6xl {
        padding-top: 1.25rem;
        padding-bottom: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
}