/*
 Theme Name:   Menexa Signage
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
@import url("/inc/css/animate.min.css");
/* ============================= */
/* 1. ELEMENTI BASE              */
/* ============================= */

body {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.3;
}

a {
    text-decoration: none;
    font-weight: 700;
    transition: color, grayscale 0.5s ease-in-out;
}

b, strong {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    color: #999999;
    text-transform: uppercase;
    margin-top: 1rem;
}

label {
    color: #999;
    font-size: 0.85rem;
    font-weight: 700;
}

hr {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-top: 1px solid #999;
}

::placeholder {
    color: #ccc !important;
    opacity: 0.5;
}

/* ============================= */
/* 2. CLASSI TIPOGRAFICHE        */
/* ============================= */

.inverso {
	background-color: #000;
	color: #ffffff;
	padding: 5px 10px 5px 10px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 900;
	display: inline-flex;
	line-height: 100%;
	margin-bottom: 10px;
}

.small { font-size: 85%; }
.x-small { font-size: 75%; }
.xx-small { font-size: 65%; }
.fw-black { font-weight: 900; }
.verde { color: #afca0b; }
.link { font-size: 75%; opacity: 0.75; }
.piccolo { font-size: 85%; }

.size-2x {
	font-size: 200%;
	line-height: 100%;
	padding: 0;
}
.size-3x {
	font-size: 300%;
	line-height: 100%;
	padding: 0;
}
.size-4x {
	font-size: 400%;
	line-height: 100%;
	padding: 0;
}
.size-5x {
	font-size: 500%;
	line-height: 100% !important;
	padding: 0;
}
.size-6x {
    font-size: 600%;
    line-height: 100% !important;
    padding: 0;
}

/* ============================= */
/* 3. NAVBAR                     */
/* ============================= */

#masthead .nav-link {
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease-in-out;
}
#masthead .nav-link:hover { color: rgba(255, 255, 255, 1); }
#masthead .nav-link:active, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show { color: rgba(255, 255, 255, 0.5); }

/* ============================= */
/* 4. BUTTONS                    */
/* ============================= */

.btn-primary { color: #fff; }
.btn-primary:hover { color: rgba(255, 255, 255, 0.75); }

.btn-xs {
    --bs-btn-font-size: 0.75rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.25rem;
}

.btn-xxs {
    --bs-btn-font-size: 0.65rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.15rem;
}

.top-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: inline-block;
}

/* ============================= */
/* 5. DROPDOWN MENU              */
/* ============================= */

.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.5);
}

.dropdown-item {
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0);
    font-weight: 400;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:focus {
    color: rgba(175, 202, 10, 1);
    background-color: #fff;
}

/* ============================= */
/* 6. FORM CONTROLS              */
/* ============================= */

.form-control { font-weight: 600; }

.has-error label, .help-block { color: red !important; }
.has-success { color: green; }

/* ============================= */
/* 7. COVER                      */
/* ============================= */

.cover {
    position: relative;
    height: 33vh;
    min-height: 100px;
    width: 100%;
    background-color: rgba(175, 202, 10, 1);
    background-position: center center;
    background-size: 100vh;
    background-repeat: no-repeat;
}

.cover-scroll{
    height: 100px;
}

.cover-title {
    position: absolute;
    bottom: 30px;
    font-size: 48px;
    background-color: #000;
    color: rgba(255, 255, 255, 1);
    padding: 4px 12px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.05rem;
    line-height: 100%;
}

/* ============================= */
/* 8. LAYOUT CLASSES             */
/* ============================= */

.spazio_superiore { margin-top: 15px; }
.spazio_inferiore { margin-bottom: 15px; }
.no_spazio { margin: 0px !important; }
.piena-pagina { min-height: calc(100vh - 70px); }

/* ============================= */
/* 9. GRID SYSTEM                */
/* ============================= */

.col-2-text { column-count: 2; column-gap: 40px; }
.col-3-text { column-count: 3; column-gap: 40px; }

/* ============================= */
/* 10. ANIMAZIONI                */
/* ============================= */

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0.25; }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.25; }
    100% { opacity: 1; }
}

.blink { animation: blink 0.75s linear infinite; }
.pulse { animation: pulse 2s linear infinite; }

.enlarge:hover { transform: scale(1.05); }
.dim-75 { transform: scale(0.75); }

div, .enlarge, ul, a, p, h1, h2, h3, h4, h5, h6, .btn, .nav-link, .dropdown-item {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	transition: transform 330ms ease-in-out;
}

/* ============================= */
/* 11. MEDIA QUERIES             */
/* ============================= */

@media (max-width: 480px) {
    .nav-link, .dropdown-item { font-size: 150%; line-height: 100%; }
    .cover-title { font-size: 36px; }
}

@media only screen and (max-width: 768px) {
    .col-2-text, .col-3-text { column-count: 1; }
}

/* ============================= */
/* 12. SLIDER                    */
/* ============================= */

.mnx-slider-image {
    display: block;
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

