/* ===== PORTFOLIO PAGE SPECIFIC STYLES ===== */
/* Add these to your existing style.css */


/* Portfolio Page Specific Styles */
.portfolio-hero {
    height: 60vh;
    min-height: 700px;
    position: relative;
    background: url('../images/portfolio.webp') no-repeat top center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.portfolio-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.portfolio-hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    background-size: 40px 40px;
    opacity: 0.3;
}


/* Portfolio Hero
.portfolio-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    color: var(--white);
    overflow: hidden;
}

.portfolio-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.property-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.foreground-properties {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/portfolio-foreground.jpg') center/cover;
    z-index: 1;
}

.background-properties {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/portfolio-foreground.jpg') center/cover;
    filter: brightness(0.5) blur(2px);
    z-index: 0;
}

.portfolio-hero .hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(10, 26, 58, 0.8);
    backdrop-filter: blur(5px);
}

.portfolio-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
*/
.subheadline {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/*.portfolio-hero .hero-description {
    font-size: 1.1rem;
    max-width: 700px;
}
*/
/* Introductory Narrative */
.portfolio-intro {
    padding: 5rem 0;
    background: var(--light-gray);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-content p {
    margin-bottom: 1.5rem;
}

.intro-content .emphasis {
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Portfolio Stats Section */
.portfolio-stats {
    padding: 5rem 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Base Card Style */
.stat-card {
    background: var(--primary); /* Dark blue background */
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary); /* Gold top border */
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Card Typography */
.stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    color: var(--white);
}

.stat-value {
    text-align:center;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--secondary); /* Gold for values */
    font-family: 'Playfair Display', serif;
}

.stat-note {
    text-align:center;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Breakdown Items */
.stat-breakdown {
    margin-top: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.breakdown-value {
    font-weight: 700;
    color: var(--secondary); /* Gold for values */
}

/* Disclaimer Box */
.disclaimer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.2rem;
    }
}

/* Structural Disclosure */
.portfolio-disclosure {
    padding: 3rem 0;
    background: var(--primary);
    color: var(--white);
}

.disclosure-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.disclosure-content i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Portfolio CTA */
.portfolio-cta {
    padding: 4rem 0;
    background: #0a1a3a;
    text-align: center;
    border-top: 1px solid #ffffff2b;
    border-bottom: 1px solid #ffffff2b;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.cta-content span {
    font-weight: 500;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        margin-top:130px;
        height: auto;
        min-height: 500px;
    }
    
    .portfolio-hero .hero-content {
        position: relative;
        bottom: auto;
        padding: 3rem 0;
        background: transparent;
    }
    
    .cta-content {
        flex-direction: column;
    }
}