/*
Theme Name: Mara Theme
Theme URI: maracaplliure.com
Description: Tema nuevo para el proyecto Mara Caplliure
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}

@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-bg-color: rgb(255, 255, 255);  
    --main-text-color: #000000; 
    --main-font: "Fontspring";
}

@font-face {
    font-family: 'Fontspring';
    src: url('fonts/Fontspring-DEMO-rocgrotesk-black.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

       /* Personalizar la selección de texto */
       ::selection {
        background: transparent; /* Fondo transparente */
        color: #00FF00; /* Color del texto seleccionado */
    }


/* my css */

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

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: white;
  scrollbar-color: #00FF00 #00FF00;
}


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

h1, h2, h3, h4, h5 {
    font-size: 18px;
    font-weight: bold;
}

a {
    color: #00FF00;
    text-decoration-skip-ink: auto;
}



@media (min-width: 600px) {
    a:hover {
        filter: blur(4px);
    }
}

ul {
    padding-inline-start: 0;
}

li {
    list-style: none;
}

p {
    font-family: sans-serif;
    font-size: 16px;
    margin: 1rem 0;
}

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

#header-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    cursor: pointer;
}

.logo .contenido-pagina .wp-block-image {
    text-align: center;
} 

.logo img {
  max-width: 200px;
}

.category-menu {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.category-menu li {
    display: inline-block;
    margin-right: 10px;
    place-content: end;
}

.category-menu a {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    white-space: nowrap;
}

.category-menu a.about-me-link {
    font-size: 20px;
    font-weight: 400;
}



@media (min-width: 600px) {
    .category-menu a:hover {
        filter: blur(4px);
    }
}

/* 
.photo-grid-container {
    margin-top: 10rem;
} */

/* .photo-grid {
    columns: 4 200px;
    column-gap: 0px;
    padding: 0px;
    width: 100%;
    display: block;
} */

.photo-grid {
       column-count: 4;    /* siempre 4 columnas */
  column-gap: 0;
  padding: 0;
  width: 100%;
}

.photo-grid-item {
    break-inside: avoid;
    margin-bottom: -5px;
    display: inline-block;
    width: 100%;
    column-span: all;
    page-break-inside: avoid;
}

.photo-grid-item img {
    width: 100%;
    height: auto;
    display: block;
    /* vertical-align: bottom; */
}

.about-me-content {
    width: 100vw;
    display: flex;
    padding: 1rem;
}

.about-me-content .wp-block-columns .wp-block-column {
    flex-basis: fit-content!important;
}

.about-me-content .wp-block-columns img {
    width: 40vw;
}

@media (max-width: 768px) {
    .about-me-content .wp-block-columns img {
        width: 100vw;
    }
    .photo-grid-container {
        margin-top: 0;
    }

}

@media (max-width: 1200px) {
    .photo-grid {
        columns: 3 200px;
    }
}

@media (max-width: 900px) {
    .photo-grid {
        columns: 2 200px;
    }
}



#toggle-menu {
    display: none;
}


/* ab me */

.ig-about-me {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0 1rem;
}

.email-about-me {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 0 1rem;
}

.text-about-me {
    position: fixed;
    bottom: 0;
    color: #00FF00;
    max-width: 95%;
}

@media (min-width: 700px) {

    .ig-about-me {
        position: fixed;
        left: 0;
        padding: 0 1rem;
        top: 50%;
    }

    .email-about-me {
        position: fixed;
        right: 0;
        padding: 0 1rem;
        top: 50%;
    }

}

@media (max-width: 768px) {

        .text-about-me {
    bottom: 3rem;}
}