/* CVG Construction Typography Styles */
/* Typography, headings, and text styling */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #34495E;
}

/* Section Typography */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1B365D;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Hero Typography */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #FF6B35;
}

.hero-subtitle, .service-hero-subtitle, .technology-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media print {
    .hero-title,
    .section-title {
        color: black !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
