/* ============================================================
   JOB SITE SIGNS PAGE STYLES
   Riverside Home Designs
   ============================================================ */

/* ========== HERO SECTION ========== */
.page-hero {
    background: linear-gradient(135deg, #1464d1 0%, #0d4a9e 100%);
    
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
    margin: 0;
}

/* ========== MAIN CONTENT CONTAINER ========== */
.page-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.page-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 30px;
}

/* ========== CONTENT SECTIONS ========== */
.section-title {
    color: #1464d1;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
}

.page-container p:last-of-type {
    margin-bottom: 0;
}

/* ========== IMPORTANT NOTE BOX ========== */
.important-note {
    background: #fff3cd;
    border-left: 4px solid #c0392b;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.important-note p {
    margin: 0;
    color: #333;
    font-weight: 600;
}

/* ========== LINKS ========== */
.page-container a {
    color: #1464d1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-container a:hover {
    color: #0d4a9e;
    text-decoration: underline;
}

/* ========== IMAGES ========== */
.page-image {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
}

.image-left {
    float: left;
    margin: 0 25px 20px 0;
    max-width: 300px;
}

/* ========== CONTACT/CTA BOX ========== */
.page-contact {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #1464d1;
    clear: both;
}

.page-contact h3 {
    color: #1464d1;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.page-contact p {
    margin: 0 0 20px 0;
    color: #555;
}

/* ========== BREADCRUMB (HIDDEN BUT SEO-FRIENDLY) ========== */
.breadcrumb-nav {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav li {
    display: inline;
}

.breadcrumb-nav li + li:before {
    content: " > ";
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 768px) {
    .page-hero {
        padding: 30px 15px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-container {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-container p {
        font-size: 1rem;
    }
    
    .image-left {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        max-width: 280px;
    }
    
    .page-contact h3 {
        font-size: 1.3rem;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 480px) {
    .page-hero {
        padding: 25px 15px;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-container {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .page-container p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .important-note {
        padding: 12px 15px;
    }
    
    .image-left {
        max-width: 100%;
    }
    
    .page-contact {
        padding: 20px 15px;
    }
    
    .page-contact h3 {
        font-size: 1.2rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .page-hero {
        background: #1464d1 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .page-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .important-note {
        background: #fff3cd !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
