﻿/* =============== RefWire Server Page Styles =============== */

/* Hero section specific styling if needed */
.server-hero {
    padding: 3rem 0;
    background-color: var(--bg-secondary); /* Slightly different background */
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

    .server-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--text-primary);
    }

    .server-hero p {
        font-size: 1.15rem;
        color: var(--text-secondary);
        max-width: 750px;
        margin: 0 auto 1.5rem;
    }

    .server-hero .hero-actions {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }


/* Feature Grid styling */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align icon/text left */
}

.feature-card-icon {
    font-size: 1.75rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    width: 48px; /* Fixed width for alignment */
    height: 48px; /* Fixed height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    border-radius: var(--border-radius);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0; /* Remove default paragraph bottom margin */
}

/* Architecture Section */
.architecture-diagram { /* Placeholder if you add a diagram later */
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

    .architecture-diagram img {
        max-width: 100%;
        height: auto;
    }


/* Styling for related tools section */
.related-tool-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem; /* Space between cards */
}

    .related-tool-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .related-tool-card p {
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

/* Use existing .code-block styles from refwire.css */
/* Ensure copy button styles are also present if using */
