/**
 * =============================================================================
 * 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 {

}

/* Simple Button styles*/
button {

}

/* Simple Button Style on Hover */
button:hover {

}

/* General Styling for Menu Screens */
[data-screen] {

}

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

/* Фоновое изображение главного меню */
[data-screen="main"] {
    background-image: url('../assets/scenes/fog_field.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Контейнер главного меню */
[data-screen="main"] main-menu {
    display: flex;
    flex-direction: column;
    align-items: center;       /* Выравнивает кнопки по центру внутри контейнера */
    justify-content: flex-end; /* Прижимает блок к низу */
    width: 67%;                /* Оставшаяся ширина экрана (100% - 33%) */
    height: 100%;              /* На всю высоту */
    position: absolute;        
    top: 0;
    left: 50%;                 /* Сдвигаем на 1/3 от левого края */
    padding-bottom: 10vh;      /* Отступ от нижнего края */
}

/* Стили и анимации строго для кнопок главного меню */
[data-screen="main"] main-menu button {
    background: rgba(35, 40, 43, 0.7); 
    color: #f0f0f0;                  
    border: 2px solid #416966;       
    width: 220px;                    
    height: 50px;                    
    margin: 8px 0;                   
    font-size: 1.1rem;
    font-family: inherit;            
    cursor: pointer;
    border-radius: 8px;              
    display: flex;                   
    align-items: center;             
    justify-content: center;         
    transition: all 0.3s ease;       
}

/* Эффект при наведении на кнопку */
[data-screen="main"] button:hover {
    background: #416966;
    color: #B2D8D8;
    transform: scale(1.05);
}


/**
 * ===========================
 * 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 Buttons style */
[data-component="choice-container"] button {
    background: rgba(35, 40, 43, 0.7); 
    color: #f0f0f0;                  
    border: 2px solid #416966;       
    width: 220px;                    
    height: 50px;                    
    margin: 8px 0;                   
    font-size: 1.1rem;
    font-family: inherit;            
    cursor: pointer;
    border-radius: 8px;              
    display: flex;                   
    align-items: center;             
    justify-content: center;         
    transition: all 0.3s ease;       
}

/* Choice Button Style on Hover */
[data-component="choice-container"] button:hover {
    background: #416966;
    color: #B2D8D8;
    transform: scale(1.05);
}

/* Text Box styling */
[data-component="text-box"] {

}

/* Character Name Style */
[data-ui="who"] {

}

/* 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]:focus::-webkit-slider-runnable-track {

}

input[type=range]::-webkit-slider-runnable-track {

}

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) {

}
