@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.4
Requires PHP: 5.6
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

/**
 * SETTINGS
 * File-header..........The file header for the themes style.css file.
 * Fonts................Any font files, if the project needs specific fonts.
 * Global...............Project-specific, globally available variables.
 *
 * TOOLS
 * Functions............Global functions.
 * Mixins...............Global mixins.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults.
 * Breakpoints..........Mixins and variables for responsive styles
 * Vertical-margins.....Vertical spacing for the main components.
 * Reset................Reset specific elements to make them easier to style in other contexts.
 * Clearings............Clearings for the main components.
 *
 * ELEMENTS
 * Blockquote...........Default blockquote.
 * Forms................Element-level form styling.
 * Headings.............H1–H6
 * Links................Default links.
 * Lists................Default lists.
 * Media................Images, Figure, Figcaption, Embed, iFrame, Objects, Video.
 *
 * BLOCKS
 * Audio................Specific styles for the audio block.
 * Button...............Specific styles for the button block.
 * Code.................Specific styles for the code block.
 * Columns..............Specific styles for the columns block.
 * Cover................Specific styles for the cover block.
 * File.................Specific styles for the file block.
 * Gallery..............Specific styles for the gallery block.
 * Group................Specific styles for the group block.
 * Heading..............Specific styles for the heading block.
 * Image................Specific styles for the image block.
 * Latest comments......Specific styles for the latest comments block.
 * Latest posts.........Specific styles for the latest posts block.
 * Legacy...............Specific styles for the legacy gallery.
 * List.................Specific styles for the list block.
 * Media text...........Specific styles for the media and text block.
 * Navigation...........Specific styles for the navigation block.
 * Paragraph............Specific styles for the paragraph block.
 * Pullquote............Specific styles for the pullquote block.
 * Quote................Specific styles for the quote block.
 * Search...............Specific styles for the search block.
 * Separator............Specific styles for the separator block.
 * Table................Specific styles for the table block.
 * Verse................Specific styles for the verse block.
 * Video................Specific styles for the video block.
 * Utilities............Block alignments.
 *
 * COMPONENTS
 * Header...............Header styles.
 * Footer...............Footer styles.
 * Comments.............Comment styles.
 * Archives.............Archive styles.
 * 404..................404 styles.
 * Search...............Search styles.
 * Navigation...........Navigation styles.
 * Footer Navigation....Footer Navigation styles.
 * Pagination...........Pagination styles.
 * Single...............Single page and post styles.
 * Posts and pages......Misc, sticky post styles.
 * Entry................Entry, author biography.
 * Widget...............Widget styles.
 * Editor...............Editor styles.
 *
 * UTILITIES
 * A11y.................Screen reader text, prefers reduced motion etc.
 * Color Palette........Classes for the color palette colors.
 * Editor Font Sizes....Editor Font Sizes.
 * Measure..............The width of a line of text, in characters.
 */

/* Categories 01 to 03 are the basics. */

/* Variables */
body {
	font-family: 'Goudy Bookletter 1911', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #e0d1af;
	color: ghostwhite;
    background-image: url('agameofcults.com/rap-content/images/backgrounds/background.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.return-button {
	text-align: right;
	padding: 10px;
}

.characters-base {
	width: 90%; /* Adjusted for better responsiveness */
	margin: 0 auto;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.characters-container {
	width: 90%; /* Adjusted for better responsiveness */
	margin: 0 auto;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.characters-container h1 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: 'Uncial Antiqua', sans-serif;
	font-size: 1.5em; /* Adjusted font size */
	color: ghostwhite;
}

.leader, .character {
	max-width: 100%; /* Adjusted for better responsiveness */
	margin-bottom: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden; /* Prevents border radius from being overridden */
	display: flex;
}

.leader img, .character img {
	width: 100%; /* Ensures images fill their containers */
	height: auto;
	margin-bottom: 10px;
	cursor: pointer;
}

.leader-details, .character-details, .hiddenDetails {
	width: 100%;
	left: 0;
	box-sizing: border-box; /* Ensures padding is included in width */
}

.character-details {
	bottom: 0;
	display: block;
	padding: 10px;
	position: absolute;
	text-align: left;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.character-details p {
	margin: 5px 0;
}

.hiddenDetails {
	display: none;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.95);
	text-align: left;
}

.character img.greyed {
	filter: grayscale(1);
}

.character img.yellow {
	filter: hue-rotate(60deg);
}

.character img.red {
	filter: hue-rotate(120deg);
}

.expandable-section-header {
	cursor: pointer;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border: 2px solid #bfa87e;
	font-size: 1.2em; /* Adjusted font size */
	color: #ffffff;
}

.expandable-section-content {
	display: none;
	flex-wrap: wrap;
	justify-content: space-around;
}

.character-name {
	margin-top: 10px;
	font-size: 1.2em; /* Adjusted font size */
	color: ghostwhite;
}

.small-oval-image {
	margin-left:2em;
	margin-top: 3.5em;
	width: 17em;
	height:22em;
	border-radius: 40%;
	background-size: cover; /* Optional */
}

.small-oval-image-frame {
	position:absolute;
	background-color: transparent;
	width: 20em;
	height:28em;
	border-radius: 40%;
	background-size: cover;
}

.mini-oval-image {
	margin-left:0.5em;
	margin-top: 0.5em;
	width: 4em;
	height:6em;
	border-radius: 40%;
	background-size: cover; /* Optional */
}

.mini-oval-image-frame {
	position:absolute;
	background-color: transparent;
	width: 5em;
	height:7em;
	border-radius: 40%;
	background-size: cover;
}

.charactersTable thead th {
	cursor: pointer;
	position: relative;
}

.sort-indicator {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8rem;
}