/* Family subdomain styles */

/* CSS Variables for theming and consistency */
:root {
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-base: clamp(0.875rem, 2.5vw, 1rem);
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #b0b0b0;
    --spacing-base: 1.5rem;
    --spacing-large: 2.5rem;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

/* Typography */
h1 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    text-align: center;
    color: var(--color-text-primary);
}

/* Utility classes */
.text-bold {
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    :root {
        --spacing-base: 1rem;
        --spacing-large: 1.5rem;
    }
}
