/*
Theme name: Total boletos
Theme URI: https://totalboletos.com/
Description: Tema para el sitio web de Total Boletos (https://totalboletos.com/).
Author: SOFTTOWN S.A.S
Version: 1.0
License: GNU General Public License v2 or later
License URL: http://www.gnu.org/licenses/gpl-2.0.html
Tags: boletos, eventos, totalboletos, totalboletos.com, artistas, conciertos, teatro, deportes, festivales, música, cultura, entretenimiento, Colombia, Bogota DC, Bogotá.
*/

@import "./styles/index.css";
@import "./styles/header.css";
@import "./styles/footer.css";
@import "./styles/legal.css";
@import "./styles/contact.css";
@import "./styles/event.css";

/* ------------- ESTILOS GLOBALES -------------*/
:root {
    --primary-color: #1F4FFF;
    --secondary-color: #AEB6C2;
    --background-dark: #050608;
    --card-bg: #0C111A;
    --text-light: #D9DEE7;
    --transition: 0.3s ease-in-out;
}

* {
    font-size: 14px;
}

body,
a,
h1,
h2,
h3,
h4,
li,
p,
button,
span,
label,
ul {
    text-decoration: none !important;
    font-family: "Sora", sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    font-family: 'Sora', sans-serif;
    overflow-x: hidden;
}