/* Sodium Website Custom Styles */

/* Custom Font Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Custom Link Styling */
a {
    transition: all 0.2s ease;
}

/* Button Hover Effects */
.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Custom Section Spacing */
.section-spacing {
    padding: 4rem 0;
}

/* Card Hover Effects */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom background for callout sections */
.callout-bg {
    background-color: rgba(16, 185, 129, 0.05);
    border-left: 4px solid #10b981;
}

/* Custom styling for code blocks */
code {
    background-color: #f1f5f9;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.875em;
}

/* Custom header styling */
.page-header {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

/* Footer styling */
.footer-link:hover {
    color: #ffffff !important;
}

/* Making images responsive */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom background for important notes */
.info-note {
    background-color: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 1rem;
    border-radius: 0.25rem;
}

/* Custom background for warnings */
.warning-note {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 0.25rem;
}