
/*
Theme name: ViveBoletos
Theme URI: https://viveboletos.com/
Description: Tema para el sitio web de ViveBoletos - Boletería siempre listos para todo evento en Colombia.
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, viveboletos, colombia music, boletería, artistas, conciertos, teatro, deportes, festivales, música, cultura, entretenimiento, Colombia, Cali.
*/

@import "./styles/index.css";
@import "./styles/header.css";
@import "./styles/footer.css";
@import "./styles/event.css";
@import "./styles/terms-and-conditions.css";
@import "./styles/privacy-policy.css";
@import "./styles/contact.css";
@import "./styles/kosmike.css";
/* @import "./styles/events.css";
@import "./styles/artists.css";
@import "./styles/about.css";
@import "./styles/contact.css";
@import "./styles/points-sale.css";
@import "./styles/event-detail.css";
@import "./styles/kosmike.css";
 */

/* ------------- ESTILOS GLOBALES VIVEBOLETOS -------------*/
:root {
    --transition-duration: 0.3s;
    --transition-delay: 0s;
    --primary-color: #ED1C24;
    --secondary-color: #1a1a1a;
    --accent-color: #f39c12;
    --text-color: #222222;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #EBEBEB;
    --bg-dark: #2c3e50;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --primary-gradient: linear-gradient(135deg, #00a8e6 0%, #0074cc 100%);
    --secondary-gradient: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-size: 14px;
}


body,
a,
h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
button,
span,
label,
ul,
input,
textarea,
select {
    text-decoration: none !important;
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
}

body {
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
}

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-duration) ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
}


.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--text-white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-duration) ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Form Elements */
.form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all var(--transition-duration) ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 230, 0.25);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background: var(--primary-gradient) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.bg-light {
    background: var(--bg-light) !important;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}
