/*
Theme Name: eveSocial
Theme URI: https://neweve.com
Description: A minimal theme designed for community sites powered by the New Eve social plugin. Not intended for traditional WordPress content — redirects all traffic to the social activity feed.
Version: 1.0.0
Author: New Eve
Author URI: https://neweve.com
Requires at least: 6.0
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: new-eve-theme
*/

/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	background: #f5f5f5;
	color: #333;
}

/* Hide default WP admin bar spacing — the plugin handles its own layout */
html.admin-bar {
	margin-top: 0 !important;
}

#wpadminbar {
	display: none !important;
}

/* Hide any default theme chrome that might leak through */
.site-header,
.site-footer,
.site-branding,
.entry-header,
.entry-footer,
.post-navigation,
.comments-area {
	display: none;
}

/* 404 page styling */
.new-eve-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80vh;
	text-align: center;
	padding: 2rem;
}

.new-eve-404 h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.new-eve-404 p {
	color: #666;
}

.new-eve-404 a {
	color: #0073aa;
	text-decoration: none;
}

.new-eve-404 a:hover {
	text-decoration: underline;
}
