/*
 * HD Movies Review - Main Styles
 * Primary Color: #e50914
 * Background: #0b0b0b
 * Cards: #151515
 * Text: #ffffff
 * Secondary Text: #bbbbbb
 * Accent: #ffd700
 */

:root {
	--primary-color: #e50914;
	--primary-hover: #f0141f;
	--bg-color: #0b0b0b;
	--card-bg: #151515;
	--text-main: #ffffff;
	--text-secondary: #bbbbbb;
	--accent-color: #ffd700;
	--radius: 16px;
	--shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.5);
	--font-main: 'Inter', system-ui, -apple-system, sans-serif;
	--glass-bg: rgba(21, 21, 21, 0.7);
	--glass-border: rgba(255, 255, 255, 0.1);
	--transition: all 0.3s ease;
}

body {
	margin: 0;
	font-family: var(--font-main);
	background-color: var(--bg-color);
	color: var(--text-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', var(--font-main);
	font-weight: 700;
	margin-top: 0;
	line-height: 1.2;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-hover);
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Site Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--glass-border);
	padding: 15px 0;
	transition: var(--transition);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding .site-title {
	font-size: 24px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.site-branding .site-title a {
	color: var(--text-main);
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.main-navigation a {
	color: var(--text-main);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.main-navigation a:hover {
	color: var(--primary-color);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* Site Footer */
.site-footer {
	background: var(--card-bg);
	padding: 60px 0 20px;
	margin-top: 60px;
	border-top: 1px solid var(--glass-border);
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.widget-title {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--text-main);
}

.site-info {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid var(--glass-border);
	color: var(--text-secondary);
	font-size: 14px;
}

/* Light Mode Overrides */
body.light-mode {
	--bg-color: #f5f5f7;
	--card-bg: #ffffff;
	--text-main: #111111;
	--text-secondary: #555555;
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(0, 0, 0, 0.1);
}
