/**
Theme Name: Noxe Child Theme
	Theme URI: https://themeforest.net/user/gloriathemes
	Description: Child theme of Noxe theme
	Author: Gloria Themes
	Author URI: https://gloriathemes.com/
	License: GNU General Public License v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: noxe
	Template: noxe
	Version: 1.0.0
*/

.otgs-development-site-front-end {
	display: none !important;
}

label {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

@font-face {
	font-family: LEMONMILKREG;  
	src: url(https://hammurabi.mindedfactory.com/wp-content/themes/noxe-child/fonts/LEMONMILKREG.woff);  
	font-weight: normal;  
}

/* Custom Footer Styling */

.custom-footer-wrapper {
    background-color: #000 !important;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 60px 5%;
    flex-wrap: wrap;
    font-family: sans-serif;
    font-size: 16px; /* Base font size for the wrapper content */
    line-height: 1.6;
}

.footer-column {
    flex: 1;
    min-width: 280px;
    margin-bottom: 30px;
}

/* Navigation Column */
.nav-column {
    margin-right: 30px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

/* Specific rule for the menu links, now targeting the <a> tag inside <strong> */
.footer-nav-list li strong a {
    color: #fff !important;
    text-decoration: none;
    font-size: 35px !important; /* <<<<< CHANGED TO 35px AND ADDED !important */
    font-weight: bold; /* This might be redundant if <strong> handles it, but good to keep */
    display: inline-block;
    transition: color 0.3s;
}

.footer-nav-list li a:hover { /* This general rule remains for hover state */
    color: #aaa;
}

/* Social & Copyright Column */
.social-copyright-column {
    align-self: flex-end;
    text-align: right;
    margin-left: auto;
}

.social-links {
    margin-bottom: 20px;
    font-size: 0.9em;
}

.social-links a {
    color: #fff !important;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #aaa;
}

.copyright-text {
    font-size: 0.8em;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .custom-footer-wrapper {
        flex-direction: column;
        padding: 40px 5%;
    }

    .footer-column {
        min-width: unset;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .nav-column {
        order: -1;
        margin-right: 0;
    }

    .social-copyright-column {
        text-align: left;
        align-self: flex-start;
        margin-left: 0;
    }
}

/* Corrección para el efecto de transformación no deseado en el menú al pasar el ratón */
.menu-item a:hover {
    transform: none !important;
    -webkit-transform: none !important;
    /* Mantener el color deseado al pasar el ratón. Elimina esta línea si NO quieres que el color cambie en absoluto. */
    color: #b2b2b2 !important;
}

/* Sobrescribir el efecto de "duplicado/agrandado" en el menú al pasar el ratón */
/* Esto apunta al .text, que es lo que se cambia en el hover según el inspector */
.menu-item a:hover .text {
    font-size: 2em !important;     /* Vuelve al tamaño de fuente original (según tu CSS por defecto) */
    text-transform: uppercase !important; /* Mantiene las mayúsculas */
    opacity: 1 !important;         /* Vuelve a ser totalmente opaco */
    transition: none !important; /* Añadido por si hay una transición CSS que lo anima */
    animation: none !important;  /* Añadido por si hay una animación CSS que lo anima */
}