@import url('./navbar.css');
@import url('./footer.css');
@import url('./hero.css');
@import url('./auth.css');
@import url('./animations.css');
@import url('./posts.css');
@import url('./postList.css');

* {
    transition: background 0.1s ease, color 0.1s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
}

:root {
    --bg: #ffffff;
    --bg-secondary: #f5f5f5;
    --text: #111111;
    --text-secondary: #444444;
    --accent: #920000;
    --accent-hover: #bd0000;
    --card-bg: #b9b9b91f;
    --tag-bg: #00000023;
    --card-border: rgba(0,0,0,0.1);
    --shadow: rgba(0,0,0,0.15);
}

body.dark-theme {
    --bg: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --text: #e6e6e6;
    --text-secondary: #b3b3b3;
    --accent: #920000;
    --accent-hover: #bd0000;
    --card-bg: #141414;
    --tag-bg: #ffffff23;
    --card-border: rgba(255,255,255,0.08);
    --shadow: rgba(0,0,0,0.4);
}

.content {
    padding: 10px;
}