/*
Theme Name: Gorka Larcan Theme
Theme URI: gorkalarcan.com
Description: Tema nuevo para el proyecto Gorka Larcan
Author: Carlos Vaquer
Author URI: carlosvaquer.com
Version: 1.0
*/

/* CSS RESET */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

:root {
    --main-bg-color: rgb(248, 248, 248);  
    --main-text-color: #050505; 
    --light-grey: rgb(191, 191, 191);
    --main-font: sans-serif;
}


/* my css */

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

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}


body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 62.5%; 
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: var(--main-font); 
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

a {
    color: var(--main-text-color);
    text-decoration: none;
}

a:hover {
    color: var(--main-bg-color);
}

ul {
    padding-inline-start: 0;
}

li {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    font-family: var(--main-font);
    font-size: 12px;
    background: none;
    margin: 0;
    padding: 0;
}

::-moz-selection {
    color: var(--light-grey);
    background: transparent;
}

::selection {
    color: var(--light-grey);
    background: transparent;
}

/* clases */
.z-9 {
    z-index: 9;
}

.z-99 {
    z-index: 99;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.balance {
    text-wrap-style: balance;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

/* COMING SOON */
.coming-soon-container h1 {
    font-size: 36px;
}
.coming-soon-container h2 {
    font-size: 18px;
    text-align: center;
    margin-top: 1rem;
}


/* ------------------------------    MEDIA Q       ------------------------------ */


/*BIG SCREEN*/
/* @media screen and (min-width: 1920px) {
      body, html{
          font-size: 1rem;
      }
  } */

/*DESKTOP RESPONSIVE*/
@media screen and (max-width: 1280px) {
    /**** GENERAL ****/
}


/*HOVER*/
@media screen and (min-width: 1024px) {

}

/*IPAD RESPONSIVE*/
@media screen and (max-width: 1020px) {

    /**** GENERAL ****/

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }


}


/*MOVILE RESPONSIVE*/
@media screen and (max-width: 650px) {

}
