/* style/resources-sicbo-platforms.css */

/* Variables */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-color: #EA7C07;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
    --hover-login-color: #D56B00;
    --hover-primary-color: #208BBF;
}

.page-resources-sicbo-platforms {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark); /* Default text color for light body background */
    line-height: 1.6;
    background-color: var(--secondary-color); /* Matches body background from shared.css */
}

/* HERO Section */
.page-resources-sicbo-platforms__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background: linear-gradient(135deg, var(--primary-color) 0%, #a2e0f8 100%); /* Lighter gradient for hero */
    color: var(--text-light);
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-resources-sicbo-platforms__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-resources-sicbo-platforms__hero-image {
    width: 100%;
    margin-bottom: 30px;
    z-index: 1;
}

.page-resources-sicbo-platforms__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-resources-sicbo-platforms__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Constrain content width */
    padding: 20px;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
    border-radius: 8px;
    margin-top: -80px; /* Overlap image slightly */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}