/* ======================================================
   PARTYVERSO
   Archivo: style.css
   Estilos Globales
====================================================== */


/*======================================================
= VARIABLES
======================================================*/

:root{

    --color-background:#0F0F0F;

    --color-surface:#181818;

    --color-card:#202020;

    --color-border:#2D2D2D;

    --color-primary:#FFFFFF;

    --color-secondary:#C9C9C9;

    --color-text:#F5F5F5;

    --color-success:#2ECC71;

    --color-danger:#E74C3C;

    --color-warning:#F39C12;

    --color-shadow:rgba(0,0,0,.35);

    --radius:18px;

    --transition:.25s ease;

    --max-width:1200px;

}


/*======================================================
= RESET
======================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--color-background);

    color:var(--color-text);

    font-family:
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;

    line-height:1.6;

}


/*======================================================
= IMÁGENES
======================================================*/

img{

    display:block;

    max-width:100%;

}


/*======================================================
= LINKS
======================================================*/

a{

    text-decoration:none;

    color:inherit;

}


/*======================================================
= BOTONES
======================================================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:white;

    color:#111;

    padding:14px 28px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    transition:var(--transition);

    font-weight:700;

    letter-spacing:.5px;

}

.btn:hover{

    transform:translateY(-2px);

}

.btn:active{

    transform:scale(.98);

}


/*======================================================
= CONTENEDOR
======================================================*/

.container{

    width:92%;

    max-width:var(--max-width);

    margin:auto;

}


/*======================================================
= TITULOS
======================================================*/

h1{

    font-size:3rem;

    font-weight:700;

}

h2{

    font-size:2rem;

    font-weight:700;

}

h3{

    font-size:1.4rem;

}

p{

    color:var(--color-secondary);

}


/*======================================================
= TARJETAS
======================================================*/

.card{

    background:var(--color-card);

    border:1px solid var(--color-border);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:0 15px 40px var(--color-shadow);

}


/*======================================================
= FORMULARIOS
======================================================*/

input,
textarea,
select{

    width:100%;

    background:#101010;

    color:white;

    border:1px solid #303030;

    border-radius:10px;

    padding:14px;

    outline:none;

    transition:var(--transition);

}

input:focus,
textarea:focus,
select:focus{

    border-color:white;

}


/*======================================================
= SCROLL
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#444;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#666;

}


/*======================================================
= UTILIDADES
======================================================*/

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:10px;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mt-4{

    margin-top:40px;

}

.mb-1{

    margin-bottom:10px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:30px;

}

.hidden{

    display:none;

}