/* RESET BÁSICO */
/* ------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol { 
  padding: 0.6em; 
}

/* Ocultar viñetas en listas de enlaces */
ul.links, ul.menu {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.bullets {
  list-style: disc inside;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.1rem;
  margin: 0em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #595a5c; /* texto gris claro */
}

.bullets li::marker {
  color: #c97134; /* bullet naranja */
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li,
figure, figcaption, blockquote, dl, dd { 
  margin: 0; 
  padding: 0;
}

img, picture, video, canvas, svg, iframe, embed {
  max-width: 100%;
  display: block;
  height: auto;
}

a { 
  text-decoration: none; 
  color: rgba(0,0,0,.7); 
  transition: all .3s ease-out; 
}

/* ------------------ */
/* TIPOGRAFÍAS */
/* ------------------ */

@font-face {
    font-family: 'Helvetica';
    src: url('Helvetica.eot');
    src: local('fonts/Helvetica'),
        url('fonts/Helvetica.eot?#iefix') format('embedded-opentype'),
        url('fonts/Helvetica.woff2') format('woff2'),
        url('fonts/Helvetica.woff') format('woff'),
        url('fonts/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Helvetica';
    src: url('fonts/Helvetica-Light.eot');
    src: local('fonts/Helvetica Light'), local('Helvetica-Light'),
        url('fonts/Helvetica-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Helvetica-Light.woff2') format('woff2'),
        url('fonts/Helvetica-Light.woff') format('woff'),
        url('fonts/Helvetica-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.work-sans-<uniquifier> {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.ibm-plex-sans-<uniquifier> {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* ------------------ */
/* GENERAL */
/* ------------------ */
body {
  background-color: #e2dcd3;
  font-weight: 400;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { 
  position: relative;
  z-index: 1000;
}

/* ------------------ */
/* HEADER */
/* ------------------ */

.hero-video {
  position: relative;
  width: 100%;
  height: 80vh;        /* ocupa toda la pantalla */
  overflow: hidden;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


header[role="banner"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ------------------ */
/* LOGO */
/* ------------------ */
#logo-container {
  z-index: 1001;
  padding-top: 0em;
}
#logo-container img {
  height: 90px;
  width: auto;
  filter: brightness(1.1);
  position: absolute;
}
/* LOGO EN HERO SOLO VISIBLE EN MOBILE */
#logo-hero-mobile {
  display: none; /* Visible por defecto en mobile */
  text-align: center;
  margin-bottom: 2em;
}
#logo-hero-mobile img {
  height: auto;  
  margin: 1rem auto;
}


/* ------------------ */
/* MENU DESKTOP */
/* ------------------ */
.menu-container {
  display: none; /* Oculto por defecto en mobile */
  justify-content: center;
  align-items: center;
}

@media (min-width: 769px) {
  .menu-container {
    display: flex;
  }
}
.menu-main-menu-container { 
  text-align: center;
  font-family: "Work Sans", helvetica, sans-serif; 
  font-weight: 500;
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 2.5em;
}

@media(min-width: 769px) {
  .menu-main-menu-container {
    display: flex;
  }
}
.menu {
  display: flex;
  gap: 1.7em; 
  background-color: rgba(231, 230, 219, 0.5);
}
.menu li {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem; 
}
.menu li a {
  color: #393a36;
  transition: color 0.4s ease, background-color 0.4s ease;
  padding: 0.2em 0.5em;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}

.menu li a:hover {
  color: #e49224; 
}
/* ------------------ */
/* MENU MOBILE */
/* ------------------ */
.mobile-menu-button {
  position: fixed;
  bottom: 0; 
  left: 0;
  width: 100%;
  background-color:#383735;
  text-align: center;
  padding: 1.2em;
  border: none;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: .78rem;
  color: #e49224;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2000;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-menu-button:hover {
  background-color:#e49224;
  color:#383735;
}

.mobile-menu-overlay {
  background: #383735;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100%); 
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 0 1em;
  box-sizing: border-box;
}

.mobile-menu-overlay.open {
  transform: translateY(0);
}

.mobile-menu-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.mobile-menu-overlay li {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 1.8rem !important;
  line-height: 0.6em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0.3em 0;
  white-space: nowrap;
}

.mobile-menu-overlay li a {
  color: #e8e8e6;
  text-decoration: none;
  transition: color 0.4s ease;
  display: inline-block;
  padding: 0.2em 0.5em;
}

.mobile-menu-overlay li a:hover {
  color: #e49224;
}

/* ------------------ */
/* HERO SLIDER */
/* ------------------ */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  z-index: 1;
}

/* SLIDES */
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

/* HERO CONTENT */
.hero-slider .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: white;
  z-index: 10;
}

/* PHOTO CREDITS */
.hero-slider .photo_credit {
  position: absolute;
  bottom: 20px;
  right: 30px;
  color: #393a36;
  z-index: 10;
  font-size: 0.6em;
  background-color: rgba(231, 230, 219, 0.7);
  padding: 5px 10px;
  font-family: Work Sans, system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .15em;
}

/* ------------------ */
/* INTRO */
/* ------------------ */

.home #intro {
  margin: 0 auto;
  padding-top: 1rem;
  max-width: 100%;   background-color: #c97134;
  margin-top: 0;
}
.home #intro p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-size: 2.5rem;
  line-height: 1.35;
  margin: 0 auto;
  padding: 1em 1.7em 1em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #e2dcd3;
  text-align: center;
  max-width: 1200px;
  letter-spacing: 0px;
}

/* Mobile pequeño */
@media (max-width: 480px) {
  .home #intro p {
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0.8em 1em;
    text-align: left; /* alineado a la izquierda */
  }
}

/* Mobile mediano */
@media (min-width: 481px) and (max-width: 768px) {
  .home #intro p {
    font-size: 1.4rem;
    line-height: 1.45;
    padding: 1em 1.2em;
    text-align: left; /* alineado a la izquierda */
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1099px) {
  .home #intro p {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1em 1.5em;
    text-align: center; /* vuelve a centrarse en tablet */
  }
}



/* ---------- Galería independiente  ---------- */
.gallery-section {
  padding: 2rem 0 4rem;
  background: transparent;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 60vh;            /* ajustá altura si querés (por ejemplo 50vh) */
  max-height: 720px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* slides individuales */
.gallery-slide {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 1;
}

/* slide visible */
.gallery-slide--active {
  opacity: 1;
  z-index: 2;
}

/* controles */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  transition: background .2s ease;
}
.gallery-prev:hover,
.gallery-next:hover { background: rgba(0,0,0,0.55); }

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* dots (indicadores) */
.gallery-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 12;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  transition: transform .15s ease, background .15s ease;
}
.gallery-dot:hover { transform: scale(1.15); }
.gallery-dot.active { background: #e49224; }

/* responsive */
@media (max-width: 768px) {
  .gallery-slider { height: 40vh; }
  .gallery-prev, .gallery-next { font-size: 1.25rem; padding: 0.2rem 0.5rem; }
}
/* ------------------ */
/* SISTEMA DE COLUMNAS MODULAR */
/* ------------------ */
.columns-container {
  display: flex;
  flex-wrap: wrap;
  margin: 3% auto;
  margin-bottom: 2em;
  max-width: 1400px;
  padding: 0 2em;
  width: 100%;
}

.column {
  padding: 0 1em;
  margin: 0 auto 3em;
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  max-width: 100%;
}

/* TIPOGRAFÍA PARA COLUMNAS */
.column__title {
 font-family: 'Helvetica Neue', Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"width" 100;
  line-height: 1.7em;
  font-weight: 400;
  font-size: 1.5vw;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .3em;
  display: block;
  color: #f2922a;
  position: relative;
  text-align: left;
}

.column__text {
font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-size: 1.3rem;
  margin: .5em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #595a5c;
}

.column__subtitle {
font-family: 'Helvetica Neue', Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"width" 100;
  font-size: 1.1rem;
  margin: .5em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #595a5c;
}

/* FOOTER DE COLUMNAS */
.column__footer {
  align-self: flex-end;
  text-align: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 .5em;
}

.column__footer-title {
font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: 400;
  font-size: 1.3rem;
  margin: .5em auto -0.05em;
  width: 100%;
  font-weight: 400;
  color: #c97134;
}

.column__footer-subtitle {
 font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0 0;
  font-size: .95rem;
  font-weight: 400;
  color: rgba(0, 0, 0, .5);
  display: block;
  width: 100%;
}

.column__footer-text {
  letter-spacing: .02em;
  font-weight: 100;
  font-size: .85rem;
  font-style: normal;
  margin: 0;
  padding: 0;
  width: 100%;
  color: rgba(0, 0, 0, .5);
}

/* BOTONES Y ENLACES */
.column__subtitle a {
  color: #a1bd37;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

.column__subtitle a:hover {
  color: #c97134;
  border-bottom: 1px solid #595a5c;
}

.column__links {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  width: 100%;
  margin: .5em 0 0;
}

.column__links li {
  margin: 0 .5em 0 0;
}

.column__links a {
  border: 1px solid #5e5c5d;
  display: inline-block;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .7rem;
  font-weight: 500;
  padding: .2em 1em;
  color: #5e5c5d;
  text-decoration: none;
  transition: all .3s ease-out;
}

.column__links a:hover {
  background: #c97134;
  color: #f3f4ea;
}

/* UTILIDADES */
.text-center {
  text-align: center;
}

.section-title {
  text-align: left;
}

.column__image {
  width: 100%;
  height: auto;
  display: block;
  margin-block: 2.2em;
  background: #ddd;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* ------------------ */
/* FOOTER */
/* ------------------ */

.footer-container {
  background-color: #e2dcd3;
}


.footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}

.footer-logo-container img {
  max-width: 240px;
  height: auto;
}

.global2 {
  margin: 0em auto 0em;
  padding: 1em 0 1em;
  text-align: center;
  clear: both;
  color: #f2922a;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0em 0.9em 0.5em;
  line-height: 1.4;
  font-family: "Work Sans", sans-serif;
}

.global {
  margin: 0em auto 0em;
  padding: 0;
  text-align: center;
  clear: both;
  font-family: "Work Sans", sans-serif;
  padding-top: 0.5em;
  padding-bottom: 2em;
}

.global .copyright {
  color: rgba(0, 0, 0, .8);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 auto .3em;
  text-transform: uppercase;
}

.global .legal {
  color: rgba(0, 0, 0, .8);
  font-size: 0.6rem;
  padding: 0 1.5em;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 auto .5em;
  max-width: 50em;
}

.socials {
  display: flex;
  padding: 0;
  margin: 20px 0 50px 0;
  order: 2;
  align-items: center;
  justify-content: center;
}

.socials svg {
  width: 30px;
  height: auto;
  margin: 0 5px 0 0;
  transition: all .3s ease-out;
  fill: #c97134;
}

.socials svg:hover {
  fill: #393a36;
}

/* ------------------ */
/* RESPONSIVE QUERIES */
/* ------------------ */

/* MOBILE PEQUEÑO */
@media (max-width: 480px) {
  /* Header oculto en mobile */
  header[role="banner"] {
    display: none;
  }
  
  #logo-hero-mobile {
    display: block;
  }
  #logo-hero-mobile img {
    height: auto;
    max-width: 250px;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .mobile-menu-overlay {
    display: flex;
  }


  /* Columnas responsive */
  .column {
    margin: 0 auto 1.5em;
  }

  .column__title {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
  }
  
  .column__text,
  .column__subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1em;
  }
  
  .column__footer-title {
    font-size: 1.1rem;
  }

  .column__footer-subtitle {
    font-size: 0.85rem;
  }

  /* Espaciado compacto entre secciones en mobile */
  .columns-container {
    margin-top: 1em;
    margin-bottom: 1.5em;
  }

  .bullets {
    font-size: 0.95rem;
    line-height: 1.4;
    padding-left: 1em;
    margin-bottom: 1em;
  }

  #soloartis .column__image {
    background: none;
    min-height: auto;
    padding: 0;
    margin-bottom: 1em;
  }

  .column__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .column__links a {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.5em;
    box-sizing: border-box;
    white-space: normal;
  }
  
  /* Footer ajustado */
  .footer-logo-container img {
    max-width: 200px;
  }
}

/* MOBILE MEDIANO */
@media (min-width: 481px) and (max-width: 768px) {
  /* Header oculto */
  header[role="banner"] {
    display: none;
  }
  
  /* Logo mobile visible */
  #logo-hero-mobile {
    display: block;
  }
  #logo-hero-mobile img {
    max-width: 250px;
  }

 

  /* Columnas responsive */
  .column__title {
    font-size: 1.6rem;
  } 
  .column__text,
  .column__subtitle {
    font-size: 1.1rem;
  }

/* TABLET */
@media (min-width: 769px) and (max-width: 1099px) {
  /* Header visible */
  header[role="banner"] {
    display: flex;
  }
  
  /* Logo mobile oculto */
  #logo-hero-mobile {
    display: none;
  }
  
  /* Menu containers visible */
  .menu-container,
  .menu-main-menu-container {
    display: flex;
  }
  @media (min-width: 769px) {
  .menu-container,
  .menu-main-menu-container {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}
  /* Menu mobile oculto */
  .mobile-menu-button,
  .mobile-menu-overlay {
    display: none !important;
  }
  
  /* Intro responsive */
  .home #intro p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  
  /* Columnas en 3 */
  .columns-container--three .column {
    width: 33.33%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  
  .columns-container--two .column {
    width: 50%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  
  .columns-container--one .column {
    width: 100%;
    margin: 0 auto 2em;
    padding: 0 2em;
  }
  
  .column__footer {
    margin-top: auto;
  }
  
  .column__title {
    font-size: 1.4rem;
  }
  
  .column__text {
    margin: 0 0 1em;
    font-size: .95rem;
  }

  

  /* Espaciado uniforme entre secciones */
  .columns-container {
    margin-top: 1.5em;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  /* Header visible */
  header[role="banner"] {
    display: flex;position: fixed; 
  }
 
  /* Columnas */
  .columns-container--three .column {
    width: 33.33%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  

  
  .columns-container--two .column {
    width: 50%;
    margin: 0 auto 1em;
    padding: 0 2em;
  }
  
  .columns-container--one .column {
    width: 100%;
    margin: 0 auto 2em;
    padding: 0;
  }
  
  
  
  .column__footer {
    margin-top: auto;
  }
  
  .column__title {
    font-size: 1.8rem;
  }
  
  /* Footer desktop */
  .page-footer {
    text-align: center;
    margin-top: 3em;
    padding: 1em 0;
    font-size: 1.2rem;
    color: #a1bd37;
  }
  
  .global2 {
    font-size: 1rem;
    letter-spacing: .2em;
    padding: 1em 0 1em;
  }
  
  .global {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .global .copyright {
    font-size: .8rem;
    letter-spacing: .12em;
  }
  
  .global .legal {
    font-size: .65rem;
    padding: 0 3em;
  }
  
  .socials {
    padding-bottom: 1em;
  }
}

#section {
  position: relative;
  margin-bottom: 0; /* Reset margins */
}
/* Separador universal después de cada sección */
#section::after {
  content: "";
  display: block;
  width: 200px;
  border-bottom: 1px solid #CBDC99;
  margin: 2rem auto 3rem;
}
/* Excepción: no mostrar separador después de la última sección */
#section:last-of-type::after {
  display: none;
}
/* RESPONSIVE: Ajustar espaciado según pantalla */
/* MOBILE PEQUEÑO */
@media (max-width: 480px) {
  section::after {
    margin: 1.5rem auto 2rem;
    width: 150px;
  }
    /* Espaciado más compacto entre secciones */
  .columns-container {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  /* Reducir espaciado interno de columnas */
  .column {
    margin-bottom: 1rem;
  }
}
/* MOBILE MEDIANO */
@media (min-width: 481px) and (max-width: 768px) {
  section::after {
    margin: 1.75rem auto 2.5rem;
    width: 180px;
  }
   .columns-container {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
  }
}
/* TABLET */
@media (min-width: 769px) and (max-width: 1099px) {
  section::after {
    margin: 2rem auto 3rem;
    width: 200px;
  }
  
  .columns-container {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
}
/* DESKTOP */
@media (min-width: 1100px) {
  section::after {
    margin: 2.5rem auto 3.5rem;
    width: 250px;
  }
  .columns-container {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
}

/* --- FIX: mostrar menú en desktop --- */
@media (min-width: 769px) {
  .menu-container,
  .menu-main-menu-container {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}


.menu li {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
}

.menu li a {
  color: #f3f4ea;
  transition: color 0.4s ease, background-color 0.4s ease;
  padding: 0.2em 0.5em;
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}

.menu li a:hover {
  color: #595a5c;
  background-color:#a1bd37;
}
