/*
Theme Name: Hello Elementor Child
Description: Tema hijo de Hello Elementor
Author: Tu nombre
Template: hello-elementor
Version: 1.0.0
*/

/* Aquí tus estilos personalizados */
:root {
    --background: #0a0a0a;
    --foreground: #fff;
    --rosa: #E89EFF;
    --azul-logo: #43D2F1;
    --gris-letras-logo:  #D5D9DB;
    font-size: clamp(12px, .5vw + .5vh, 24px);
}

/* -	Rosa: #451C33
-	Rosa 2: #FF69F6
-	Morado 1: #A97EFF
-	Morado 2: #8B33D3 */


body {
    background-image: url(/wp-content/uploads/background.svg);
    background-position: 50% 0;
    background-size: cover;
    background-attachment: fixed;
    font-size: 14px;
    line-height: 20px;
    background-color: var(--background) !important;
    color: var(--foreground) !important;
}

.entry-title {
    display: none !important;
}

.elementor-384{
    height: 0px;
}

/* Header */
.custom-header {
    position: fixed;
    width: 95%;
    z-index: 100;
    backdrop-filter: blur(5px);
    background-color: #ffffff1a !important;
    border-color: #fff3;
    border-width: 1px;
    border-radius: 4rem;
    margin: auto;
    top: 20px;
    left: 15px;
    right: 15px;
}

@media(max-width: 767px){
    .custom-header {
        width: 95%;
        left: 10px;
        right: 10px;
    }

    .logo-header img{
        height: 45px !important;
    }
}

.custom-header .iconos-sociales svg{
    height: 25px !important;
    width: 25px !important;
}

.custom-header .iconos-sociales a {
    width: 50px !important;
}

.custom-header .iconos-sociales a:hover {
    transform: scale(1.1);
}   

.supremell h1, .supremell h2, .supremell h3, .supremell h4, .supremell p, .supremell span, .supremell a {
    font-family: supremell !important;
}

.tickets-header h2 {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    cursor: pointer;
}

.tickets-header h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--azul-logo);
    box-shadow: 0 0 8px var(--azul-logo), 0 0 20px var(--azul-logo);
    transition: width 0.3s ease;
}

.tickets-header h2:hover {
    color: var(--azul-logo);
    /* text-shadow: 0 0 10px var(--azul-logo), 0 0 30px var(--azul-logo); */
}

.tickets-header h2:hover::after {
    width: 100%;
}

/* Menu desplegado mobile */

.zima-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.zima-overlay.active {
    opacity: 1;
    visibility: visible;
}

#zima-menu-close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-color: transparent;
}

#zima-menu-overlay {
    background-color: var(--rosa);
}

.zima-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.zima-menu-nav a {
    text-decoration: none;
    font-size: clamp(28px, 8vw, 52px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    color: white;
    font-family: supremell;
}

.zima-menu-social {
    display: flex;
    gap: 28px;
    margin-top: 48px;
}

.zima-menu-social a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
    color: white;
}

.zima-menu-social a:hover {
    transform: scale(1.2);
}