@font-face {
  font-family: 'frase multilenguaje';
  src: url('theskinny-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'bit-03urbanfluxerregular';
    src: url('bit03-webfont.woff2') format('woff2'),
         url('bit03-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

:root {
    --primary-color: #0E7E7B;
    --secondary-color: #ffffff;
    --text-color: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* La fuente del body es un buen lugar para definir la fuente del texto principal */
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--secondary-color);
    /*overflow: hidden;*/
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.color-section {
    width: 50%;
    background-color: var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /*overflow: hidden;*/
}

.logo {
    width: 80%;
    height: auto;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.text-section {
    width: 50%;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

/* El título principal XIBALBA usa la fuente Oswald */
.main-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--text-color);
    margin-bottom: 20px;
}

/* El texto principal usa la fuente Montserrat */
.text-xibalba {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}


/* Subtítulo ECHT URBAN */
.echt-urban {
    font-family: 'Oswald';
    font-size: clamp(1rem, 1vw, 1.0rem);
    color: var(--text-color);
    line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    
}

.echt-urban a {
    text-decoration: none; /* Asegura que no tenga subrayado */
    color: #E85207; /* El color base del texto será el de neón */
    
    /* Crea el efecto de brillo neón */
    text-shadow: 
        0 0 5px #E85207,  /* Sombra más pequeña y definida */
        0 0 10px #E85207, /* Sombra un poco más grande */
        0 0 20px #E85207, /* Sombra más difuminada para el resplandor */
        0 0 40px #E85207; /* Sombra más grande para el brillo exterior */
    
    transition: text-shadow 0.3s ease-in-out; /* Transición para un efecto más suave al pasar el mouse */
}

/* Opcional: un efecto más intenso al pasar el mouse sobre el enlace */
.echt-urban a:hover {
    text-shadow: 
        0 0 10px #E85207,
        0 0 20px #E85207,
        0 0 40px #E85207,
        0 0 80px #E85207;
}

/* Espacio entre los párrafos */
.text-xibalba p {
    margin-bottom: 1.5rem;
}


/* Estilos del menú de hamburguesa */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Animación a 'X' cuando el menú está activo */
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(13.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-13.5px) rotate(-45deg);
}

/* Estilos del menú de navegación */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: transparent; /* Color sólido para el menú */
    /*box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);*/ /* Sombra para destacarlo */
    z-index: 999;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.menu.active {
    transform: translateX(0);
}

.menu ul li {
    padding: 15px 20px;
}

.menu ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: block;
}

.clase-1 a, .clase-2 a {
    font-family: 'bit-03urbanfluxerregular', sans-serif;
}

/* Media query para pantallas más pequeñas (máx. 768px) */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto; /* Permite que el contenedor se ajuste a la altura del contenido */
    }

    .color-section, .text-section {
        width: 100%;
        height: auto; /* Permite que la altura de las secciones se ajuste */
        min-height: 50vh; /* Opcional: asegura que no sean demasiado pequeñas */
        padding: 40px 20px; /* Ajusta el padding para móviles */
    }

    
    .logo {
        width: 67%;
    }
    
    .hamburger-menu {
        display: flex;
        position: fixed;
        left: 20px;
        top: 20px;
    }

    .menu {
        display: block;
    }
}