/* ==========================================================
   JESUSILLAN.COM
   BASE.CSS
   v4.0
========================================================== */

/* ==========================================================
   GOOGLE FONTS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');


/* ==========================================================
   RESET MODERNO
========================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}


/* ==========================================================
   HTML
========================================================== */

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}


/* ==========================================================
   BODY
========================================================== */

body{

    background:var(--color-bg);

    color:var(--color-text);

    font-family:var(--font-body);

    font-size:16px;

    line-height:1.7;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    overflow-x:hidden;

}


/* ==========================================================
   SELECCIÓN
========================================================== */

::selection{

    background:var(--color-gold);

    color:#000;

}


/* ==========================================================
   ENLACES
========================================================== */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}


/* ==========================================================
   IMÁGENES
========================================================== */

img{

    display:block;

    max-width:100%;

    height:auto;

}


/* ==========================================================
   BOTONES
========================================================== */

button{

    font:inherit;

    cursor:pointer;

    border:none;

    background:none;

}


/* ==========================================================
   LISTAS
========================================================== */

ul,
ol{

    list-style:none;

}


/* ==========================================================
   TITULOS
========================================================== */

h1,
h2,
h3,
h4,
h5{

    font-family:var(--font-title);

    font-weight:500;

    line-height:1.1;

    color:var(--color-text);

}


h1{

    font-size:var(--fs-h1);

}


h2{

    font-size:var(--fs-h2);

}


h3{

    font-size:var(--fs-h3);

}


/* ==========================================================
   PÁRRAFOS
========================================================== */

p{

    color:var(--color-text-soft);

    margin-bottom:1.25rem;

}


/* ==========================================================
   CONTENEDOR GENERAL
========================================================== */

.container{

    width:min(var(--container),92%);

    margin:auto;

}


/* ==========================================================
   SECCIONES
========================================================== */

section{

    padding:var(--space-xl) 0;

}


/* ==========================================================
   UTILIDADES
========================================================== */

.text-center{

    text-align:center;

}

.gold{

    color:var(--color-gold);

}

.hidden{

    display:none !important;

}


/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--color-gold-dark);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-gold);

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:768px){

    body{

        font-size:15px;

    }

    section{

        padding:5rem 0;

    }

}
