/*
Theme Name: Otro Theme
Theme URI: http://lanaveob.com
Description: Tema hijo personalizado parea la Nave OB.
Author: Radagast
Author URI: http://instagram.com/radagasttw
Template: blankslate
Version: 1.0.26
Text Domain: lanave
*/

html {
  /* Esto hace que 1rem = 10px (si el navegador está en 16px) */
  font-size: 62.5%;
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
}

article {
 min-height: 80vh;
}

.denied_access {
    padding-left: 20px;
}



/* fonts */

.jersey-25-regular {
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.chathura-thin {
  font-family: "Chathura", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.chathura-light {
  font-family: "Chathura", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.chathura-regular {
  font-family: "Chathura", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.chathura-bold {
  font-family: "Chathura", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.chathura-extrabold {
  font-family: "Chathura", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/** <weight>: Use a value from 300 to 900 */
.matangi-300 {
  font-family: "Matangi", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.matangi-900 {
  font-family: "Matangi", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}


body{
    /* Estableces el tamaño base para el texto común */
    font-size: 1.6rem; /* 16px */
	background-color:#2e2e45;
}

a {
    text-decoration: none;
}

#header{
	background-color: #000;
	background: repeating-linear-gradient(45deg, black, black 5px, #181818 6px, #181818 7px);
	height: 60px;
	justify-content: space-between;
	
}

#header, nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

#branding {
    padding: 0 20px 0 10px;
    background-color: #8200ff;
    height: 60px;
}
#menu {
    text-transform: uppercase;
    padding-right: 30px;
    padding-left: 15px;
    height: 100%;
}

.custom-logo {
    width:auto;
    height: 60px;
}

#wrapper {
    margin: auto;
    max-width: 1280px;
}

#menu-main {
    display: flex;
    gap: 20px;
    background-color: #000;
}

.menu-item {
    padding: 5px;
    border-bottom: 1px solid #fff;
    border-bottom-width: 1px;
    border-style: dotted;
}

#menu-main a {
	color: #fff;
}

#menu-main li.menu-item a {
  position: relative;
  color: white; /* Fondo negro, texto blanco */
  display: inline-block; /* para que padding funcione bien */
  transition: color 0.3s ease;
  font-size: 1.5rem;
}

/* Corchete izquierdo: siempre ocupa espacio, invisible por defecto */
#menu-main li.menu-item a::before {
    content: "[";
    position: absolute;
    left: -7px;
    top: 42%;
    transform: translateY(-50%);
    color: transparent;
    pointer-events: none;
    transition: color 0.3s ease;
}

/* Corchete derecho: igual que el izquierdo */
#menu-main li.menu-item a::after {
  content: "]";
  position: absolute;
  right: -7px;
  top: 42%;
  transform: translateY(-50%);
  color: transparent;
  pointer-events: none;
  transition: color 0.3s ease;
}

/* Al hacer hover, mostramos los corchetes */
#menu-main li.menu-item a:hover::before,
#menu-main li.menu-item a:hover::after {
  color: #aadd00; /* color visible */
}

#search{
    display:none;
}

#container {
  /*background-image: url('/wp-content/uploads/obfiles/ob_fondito01.webp');*/
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto; /* o ajusta seg煤n prefieras */

  background-color: #fff;
}

/*grilla home*/

    
/**botones***/
    
.botones_ob {
    height: auto;
    padding: 12px;
    border-radius: 39px;
    background-color: #009117;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    margin: 0 30px;
    font-weight: bold;
}


/*post*/

.single .post {
    padding: 3rem;
}

.fimg {
    height: 350px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.fimg img {
    width: 100%;
    height: auto;
}

.entry-content {
    padding: 10px;
}

.entry-title {
    font-weight: 400;
    font-size: 4.8rem;
    padding: 3rem;
}


/*** footer**/
#footer {
    background-color: #260239;
    color: white;
    padding: 40px 20px; /* Ajusta el espacio interno del footer */
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Alineación vertical perfecta */
    justify-content: flex-start; /* Alinea todo a la izquierda */
    gap: 20px; /* Espacio entre la imagen y el texto */
}

.footer-logo-left img {
    display: block;
    max-height: 50px; /* Ajusta el tamaño de la imagen según necesites */
    width: auto;
}

#copyright {
    font-size: 1.1rem;
    color: #cdcdcd;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column; /* Se apilan en pantallas pequeñas */
        text-align: center;
    }
}


/*responsive*/


@media screen and (max-width: 600px) { 
    #menu-main {
        display: none;
    }
    
    .entry-title {
        font-size: 3.8rem;
        line-height: 0.8;
    }

}
