/* ===================================================================
   SECTIONS.CSS
   Page Section Layouts and Styling
   =================================================================== */

/* ===== SECTION CONTAINER ===== */
.section {
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.section-main {
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

/* Section concept spacing */
#section-concept {
    padding-top: 100px;
    margin-top: 0;
}

/* ===== SECTION CONTENT ===== */
.section-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    margin-bottom: 2.5rem;
}

.section-title h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.section-about,
.section-features {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.section-about h4,
.section-features h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== SECTION TOGGLES ===== */
.section-toggles {
    margin-top: 2.5rem;
}

/* ===== SECTION TAG ===== */
.section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    background-color: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

/* ===== SECTION CARD ===== */
.section-card {
    border-left: 3px solid #0088cc;
    background-color: rgba(0, 136, 204, 0.05);
}

.section-card .mod-name {
    color: #0088cc;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 1.5rem 0;
    }
    
    .section-main {
        padding: 2rem 0;
    }
    
    .section-content {
        padding: 0 1rem;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
    .section-about,
    .section-features {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-about h4,
    .section-features h4 {
        font-size: 1.25rem;
    }
}
