/* ========================================
   SPECS - BUILDERS SET OF PLANS
   Riverside Home Designs
   ======================================== */

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, #1464d1 0%, #0d4a9f 100%);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.hero-section h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

/* ========== MAIN CONTENT ========== */
.main-content {
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.main-content .container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-left: 4px solid #1464d1;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.includes-heading {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}

/* ========== SPEC SECTIONS ========== */
.spec-section {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.spec-section h2 {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1464d1;
}

.spec-section h3 {
    color: #1464d1;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.spec-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.spec-section ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.spec-section ul li {
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 10px;
}

/* ========== HIGHLIGHT SECTION ========== */
.highlight-section {
    background-color: #f8f9fa;
    border-left: 4px solid #1464d1;
}

/* ========== SERVICE ITEMS ========== */
.service-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bonus {
    color: #2e7d32;
    background-color: #e8f5e9;
    padding: 10px 15px;
    border-radius: 4px;
    margin-top: 10px;
}

.important-note {
    color: #c62828;
    background-color: #ffebee;
    padding: 10px 15px;
    border-radius: 4px;
    margin-top: 10px;
}

/* ========== LICENSE SECTION ========== */
.license-section {
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
}

.license-section h2 {
    color: #f57f17;
    border-bottom-color: #f9a825;
}

/* ========== BACK LINK ========== */
.back-link {
    margin-top: 30px;
    text-align: center;
}

.back-link a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1464d1;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-link a:hover {
    background-color: #0d4a9f;
    text-decoration: none;
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 30px 15px;
    }
    
    .spec-section {
        padding: 20px;
    }
    
    .spec-section h2 {
        font-size: 1.3rem;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .spec-section {
        padding: 15px;
    }
    
    .spec-section h2 {
        font-size: 1.2rem;
    }
    
    .spec-section h3 {
        font-size: 1.1rem;
    }
    
    .spec-section ul {
        margin-left: 10px;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 15px;
    }
    
    .includes-heading {
        font-size: 1rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .hero-section {
        background: #fff;
        color: #000;
        border-bottom: 2px solid #1464d1;
    }
    
    .hero-section h1 {
        color: #1464d1;
    }
    
    .main-content {
        background: #fff;
    }
    
    .spec-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .back-link {
        display: none;
    }
}
