/**
 * =============================================================================
 * This is the file where all your styling should go in.
 * Instead of modifying the styles found in the monogatari.css file or others,
 * you should overwrite those styles in this file.
 *
 * The CSS selectors shown are not an extensive list but they are the most
 * common you might want to change. To find what other elements are available,
 * you can take a look at the monogatari.css file or use your browser's dev
 * tools to inspect the elements.
 * =============================================================================
**/

/**
 * ===========================
 * General Styling
 * ===========================
**/

/* General Style */
body {
	font-family: 'Georgia', 'Palatino Linotype', serif;
	background-color: #1a1008;
}

/* Simple Button styles*/
button {
	background: linear-gradient(135deg, rgba(224,164,88,0.18) 0%, rgba(224,164,88,0.05) 100%);
	border: 1px solid #e0a458;
	color: #f2d9b8;
	font-family: 'Georgia', 'Palatino Linotype', serif;
	letter-spacing: 0.5px;
	transition: all 0.25s ease;
}

/* Simple Button Style on Hover */
button:hover {
	background: linear-gradient(135deg, #e0a458 0%, #b87f3a 100%);
	color: #1a1008;
	box-shadow: 0 0 18px rgba(224,164,88,0.5);
	transform: translateX(4px);
}

/* General Styling for Menu Screens */
[data-screen] {
	background-color: #1a1008;
}

/**
 * ===========================
 * Main Menu Styling
 * ===========================
**/

/* Main Menu Styling */
[data-screen="main"] {
	background: radial-gradient(ellipse at 50% 30%, #3a2818 0%, #1a1008 70%);
}

/* Main Menu Buttons Styling */
[data-screen="main"] button {
	min-width: 180px;
	padding: 14px 22px;
	font-size: 1.05em;
	border-radius: 4px;
}

/**
 * ===========================
 * Save and Load Menus Styling
 * ===========================
**/

/* Slots Style */
[data-component="save-slot"] figure {

}

/* Slot's Image Style */
[data-component="save-slot"] img {

}

/* Slots Title Style */
[data-component="save-slot"] figcaption {

}

/* Slots Delete Button Style */
[data-component="save-slot"] button {

}

/**
 * ===========================
 * Game Elements Styling
 * ===========================
**/

/* Choice Container: cap height and allow scrolling so long choice lists
   never overlap the quick-menu bar on short (landscape mobile) viewports */
[data-component="choice-container"] {
	max-height: min(60vh, 320px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

/* Choice Buttons style */
[data-component="choice-container"] button {
	background: rgba(20, 12, 6, 0.75);
	border: 2px solid #e0a458;
	color: #f2d9b8;
	border-radius: 6px;
	font-family: 'Georgia', 'Palatino Linotype', serif;
	backdrop-filter: blur(2px);
	flex-shrink: 0;
}

@media screen and (max-height: 450px) {
	[data-component="choice-container"] {
		max-height: 38vh;
	}

	[data-component="choice-container"] button {
		padding: 6px 12px;
		font-size: 0.85em;
	}
}

/* Choice Button Style on Hover */
[data-component="choice-container"] button:hover {
	background: rgba(224,164,88,0.85);
	color: #1a1008;
	box-shadow: 0 0 16px rgba(224,164,88,0.6);
}

/* Text Box styling. Reserve space for the 40px quick-menu bar so the
   textbox (and the choice list inside it) can never be covered by it. */
[data-component="text-box"] {
	background: linear-gradient(180deg, rgba(26,16,8,0.2) 0%, rgba(20,12,6,0.96) 100%);
	border-top: 3px solid #e0a458;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}

/* Character Name Style */
[data-ui="who"] {
	color: #e0a458;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Style for Centered Text */
[data-component="centered-dialog"] {

}

/* Character Images Styles */
[data-screen="game"] [data-character] {

}

/* Other Images Styles */
[data-screen="game"] [data-image] {

}

/**
 * ===========================
 * Quick Menu Styling
 * ===========================
**/

/* These styles are applied to the Mobile version of the Quick Menu */

/* Quick Menu Style */
[data-component="quick-menu"] {

}

/* Quick Menu Buttons Style */
[data-component="quick-menu"] span {

}

/* Quick Menu Buttons Style on Hover */
[data-component="quick-menu"] span:hover {

}

/* Quick Menu Buttons Icon Style */
[data-component="quick-menu"] > span > .fa {

}

/**
 * ===========================
 * Range Styling
 * ===========================
**/

/* Use the background property to set a color for these */
input[type=range] {
	accent-color: #e0a458;
}

input[type=range]:focus::-webkit-slider-runnable-track {
	background: rgba(224, 164, 88, 0.3);
}

input[type=range]::-webkit-slider-runnable-track {
	background: rgba(224, 164, 88, 0.3);
}

input[type=range]::-webkit-slider-thumb {
	background: #e0a458;
	border: 2px solid #1a1008;
}

input[type=range]:focus::-ms-fill-upper {

}

input[type=range]:focus::-ms-fill-lower {

}

input[type=range]::-moz-range-track {

}

input[type=range]::-ms-fill-lower {

}

input[type=range]::-ms-fill-upper {

}

/** Medium Screens, Phablets (601px) **/
@media screen and (min-width: 37.56255em) {
	/* Styles for the desktop version of the Quick Menu */

	/* Quick Menu Style */
	[data-component="quick-menu"] {

	}

	/* Quick Menu Buttons Style */
	[data-component="quick-menu"] span {

	}

	/* Quick Menu Buttons Style on Hover */
	[data-component="quick-menu"] span:hover {

	}
}

/** Medium Devices, Tablets (992px)**/
@media screen and (min-width: 62em) {

}

/** HD Screen, Large Devices, Wide Screens, Desktop (1200px) **/
@media screen and (min-width: 75em) {

}

/** Full HD Screen, Large Devices, Wide Screens, Large Desktops (1920px) **/
@media screen and (min-width: 120em) {

}

/** Retina Screen , Large Devices, Wide Screens(2560px) **/
@media screen and (min-width: 160em) {

}

/** 4k Screens, Large Devices, Wide Screens (3840px) **/
@media screen and (min-width: 240em) {

}

/** 5k Screens, Large Devices, Wide Screens (5000px) **/
@media screen and (min-width: 312.5em) {

}

/** 8k Screens, Large Devices, Wide Screens (8000px) **/
@media screen and (min-width: 500em) {

}
