/*
Theme Name: One Man Movie Land
Theme URI: https://onemanmovieland.com
Description: Movie palace child theme for GeneratePress
Author: One Man Movie Land
Template: generatepress
Version: 1.0.0
*/
/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Cormorant+Garamond:wght@400;500;600&family=Oswald:wght@200;300;400&display=swap');

/* ---------- Palette ---------- */
:root {
	--omml-black:  #100b0a;
	--omml-panel:  #1a1110;
	--omml-red:    #6e1616;
	--omml-gold:   #c9a227;
	--omml-gold-2: #e8c98a;
	--omml-cream:  #f2e5cc;
	--omml-muted:  #8a7a52;
}

/* ---------- Film card ---------- */
.omml-film {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin: 0 0 28px;
	padding: 20px;
	background: var(--omml-panel);
	border-top: 3px solid var(--omml-gold);
}

.omml-film__poster {
	flex: 0 0 180px;
	border: 2px solid var(--omml-gold);
	padding: 4px;
	background: var(--omml-black);
}

.omml-film__poster img {
	display: block;
	width: 100%;
	height: auto;
}

.omml-film__info {
	flex: 1 1 auto;
	min-width: 0;
}

.omml-film__info p {
	margin: 0 0 10px;
}

/* Verdict badge */
.omml-verdict {
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 4px 12px;
	border: 1px solid var(--omml-gold);
	color: var(--omml-gold-2);
}

.omml-verdict--down {
	border-color: #8a4a4a;
	color: #d99a9a;
}

/* Metadata lines */
.omml-film__meta {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--omml-muted);
}

.omml-film__genres {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 18px;
	color: var(--omml-cream);
}

.omml-film__cast {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 16px;
	color: #b9a98c;
	line-height: 1.4;
}

/* Streaming line, below the review */
.omml-where {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--omml-muted);
	border-top: 1px solid #3a2c1c;
	padding-top: 14px;
	margin-top: 24px;
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
	.omml-film {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 18px;
		padding: 16px;
	}

	.omml-film__poster {
		flex: 0 0 auto;
		max-width: 200px;
	}
}
/* ---------- Page ---------- */
body {
	background: var(--omml-black);
	color: var(--omml-cream);
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 19px;
}

.site-content,
.inside-article,
.sidebar .widget,
.comments-area {
	background: transparent;
}

/* ---------- Header ---------- */
.site-header {
	background: var(--omml-red);
	border-bottom: 3px solid var(--omml-gold);
}

.site-title,
.site-title a {
	font-family: 'Limelight', serif;
	font-size: 30px;
	letter-spacing: 2px;
	color: var(--omml-gold-2);
	text-transform: uppercase;
}

.main-navigation,
.main-navigation ul ul {
	background: var(--omml-panel);
	border-bottom: 1px solid #4a2a1c;
}

.main-navigation .main-nav ul li a {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--omml-gold);
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li.current-menu-item > a {
	color: var(--omml-cream);
	background: var(--omml-red);
}

/* ---------- Typography ---------- */
.entry-title,
.entry-title a,
h1, h2, h3 {
	font-family: 'Limelight', serif;
	color: var(--omml-cream);
	letter-spacing: 1px;
}

.entry-title {
	font-size: 32px;
	line-height: 1.2;
}

.entry-meta,
.entry-meta a {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--omml-muted);
}

a {
	color: var(--omml-gold-2);
}

a:hover {
	color: var(--omml-cream);
}

/* ---------- Sidebar ---------- */
.sidebar .widget {
	border-top: 1px solid #3a2c1c;
	padding-top: 18px;
}

.sidebar .widget .widget-title {
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--omml-muted);
}

/* ---------- Footer ---------- */
.site-footer,
.site-info {
	background: var(--omml-panel);
	border-top: 3px solid var(--omml-gold);
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--omml-muted);
}
/* ---------- Corrections ---------- */

/* Page goes near-black; warm tones become light, not field */
body,
.site-content,
.inside-article,
.content-area,
.site-main,
.entry-content,
.comments-area,
.sidebar .widget {
	background: var(--omml-black) !important;
}

/* Header: darker, red as a lit edge rather than a wall */
.site-header {
	background: linear-gradient( 180deg, #2a0e0e 0%, var(--omml-black) 100% );
	border-bottom: 2px solid var(--omml-gold);
}

/* Title: bigger, wider, and lit */
.site-title,
.site-title a {
	font-size: 40px;
	letter-spacing: 6px;
	color: var(--omml-gold-2);
	text-shadow: 0 0 18px rgba( 201, 162, 39, 0.35 );
}

/* Navigation sits on black, gold reads as signage */
.main-navigation,
.main-navigation ul ul {
	background: var(--omml-black);
	border-bottom: none;
	border-top: 1px solid #2e2318;
}

/* Kill the blue accent everywhere */
.main-navigation .main-nav ul li a,
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current_page_item > a,
.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li:focus > a {
	color: var(--omml-gold) !important;
	background: transparent !important;
}

.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li:hover > a {
	color: var(--omml-cream) !important;
	border-bottom: 2px solid var(--omml-gold);
}

/* Film card keeps the warm panel — but only here */
.omml-film {
	background: linear-gradient( 160deg, #1a1110 0%, #120c0b 100% );
	border-top: 2px solid var(--omml-gold);
	box-shadow: 0 0 40px rgba( 0, 0, 0, 0.6 );
}

/* Poster frame reads as brass catching light */
.omml-film__poster {
	border-color: var(--omml-gold);
	box-shadow: 0 0 24px rgba( 201, 162, 39, 0.12 );
}

/* Entry titles lit rather than flat */
.entry-title,
.entry-title a {
	color: var(--omml-cream);
	text-shadow: 0 0 14px rgba( 242, 229, 204, 0.15 );
}