/* CSS for Emilya Naymark site */

/* CSS Reset and Base Styles */
:root {
    /* Color variables */
    --primary-color: #4e7a9e;
    --primary-dark: #345872;
    --accent-color: #e8564a;
    --text-color: #333;
    --text-light: #7a7a7a;
    --bg-color: #fff;
    --bg-alt: #f6f6f6;
    --border-color: #e1e1e1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Josefin Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Dark theme variables */
[data-theme="dark"] {
    --primary-color: #5d8fb8;
    --primary-dark: #4a7da2;
    --accent-color: #ff6b5e;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-color: #121212;
    --bg-alt: #1e1e1e;
    --border-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

/* Theme transition */
.theme-transition {
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
}