/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

:root {
    --primary-color: rgba(34, 116, 13, 0.75);
    --overlay-color: rgba(24, 39, 51, 0.85);
    --menu-speed: 0.75s;
  }
  *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }
  
  body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.4;
  }
  
  .container{
    max-width: 960px;
    margin: auto;
    overflow: hidden;
    padding: 0;
  }
  
  .showcase {
    background-color: var(--primary-color);
    color: #fff;
    height: 100vh;
    position: relative;
  }
  
  .showcase::before {
    content: '';
    background: url(../img/A1407_entre_flores_100x50.JPG) no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .showcase .showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
  

  .showcase h2 {
    font-size: 4rem;
    color: white;
  }

.showcase-inner a {
    text-decoration: none;
    font-size: 4rem;
    color: white;
    transition: color 0.5s ease;
  }
.showcase-inner a:hover {
    color: rgba(48, 199, 6, 0.938);
    font-size: 4.2rem;
  }

  .showcase-inner svg {
    color: white;
    padding: 5px;
    border: 1px solid white;
    border-radius: 50%;
    
  }
  .showcase-inner svg:hover{
    color: rgb(12, 146, 7);
    border: 1px solid rgba(34, 116, 13, 0.75);
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
  }
  
  .showcase p {
    font-size: 1.3rem;
  }

  
  .boton {
    display: inline-block;
    color: #fff;
    margin-top: 1rem;
    text-decoration: none;
    border: 1px solid #fff;
    opacity: 1;
    transition: opacity 0.5s ease-in;
  }
  
  .boton:hover {
    opacity: 0.4;
  }
  
  /*MENU*/
  .nav {
    position: absolute;
    left: 30px;
    z-index: 1;
  }
  .nav-link {
    color: white;
    font-size: 20px;
    letter-spacing: 0.3rem;
    transition: all 0.4s ease-in-out;
  }
  
  .nav-link:hover {
    color: #70fa5e;
    font-size: 22px;
  }

  .lead a {
    color: black;
    font-size: 20px;
    transition: 0.3s;
    }
    
    .lead .bi {
      font-size: 20px;
      color: black;
    }
    
    .lead a:hover {
      color: black;
      font-size: 20px;
      letter-spacing: 4px;
    }

  .menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
  }
  
  .menu-wrap .toggler {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    opacity: 0;
  }
  
  .menu-wrap .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  /*HAMBURGUESA*/
  
  .menu-wrap .hamburger > div {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  
  /*como hacer las lineas*/
  .menu-wrap .hamburger > div::before,
  .menu-wrap .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 3px;
    background: #fff;
  }
  
  .menu-wrap .hamburger > div::after {
    top: 10px;
  }
  
  /*ANIMACION*/
  
  .menu-wrap .toggler:checked + .hamburger > div {
    transform: rotate(135deg)
  }
  
  .menu-wrap .toggler:checked + .hamburger > div::before,
  .menu-wrap .toggler:checked + .hamburger > div::after {
    top: 0;
    transform: rotate(90deg);
  }
  
  /*ROTAR CUANDO PULSAMOS*/
  .menu-wrap .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
  }
  
  /*VER MENU*/
  
  .menu-wrap .toggler:checked ~ .menu {
    visibility: visible;
  }
  
  .menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: var(--menu-speed);
  }
  
  .menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  
  .menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu-wrap .menu > div {
    background: var(--overlay-color);
    border-radius: 50%;
    width: 200vw;
    height: 200vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
  }
  
  .menu-wrap .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem; 
  }
  
  .menu-wrap .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: all 0.5s ease;
  }
  
  .menu-wrap .menu > div > div > ul > li > a:hover {
    color: #fa7305;
    font-size: 2.5rem;
  }
  
  /*boton para subir*/
.up {
  background: var(--primary-color);
  position: fixed;
  bottom: 20px;
  right: 15px;
  padding: 0 20px;
  cursor: pointer;
  color: white;
  font-size: 40px;
  transition: color 0.4s linear;
  border-radius: 100%;
}

  /*FOOTER*/
  .social {
      font-family: "Ubuntu", sans-serif;
      font-size: 30px;
      color: black;
      }
      
  .social a {
      color: black;
      padding: 0 15px;
      transition: color 0.4s ease-in-out;
      }
      
  .social a:hover {
      color: #fa7305;
      text-decoration: none;
      }
      
      .footer {
        background: white;  
        color: black; 
        padding: 20px 0; 
        text-align: center;  
        font-size: 15px; 
      
      }

    /*galeria*/

    .tz-gallery {
      padding: 40px;
    }
    
    .tz-gallery .lightbox img {
      width: 100%;
      margin-bottom: 20px;
      transition: 0.2s ease-in-out;
      box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    }
    
    
    .tz-gallery .lightbox img:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    }
    
    .tz-gallery img {
      border-radius: 4px;
    }
    
    .baguetteBox-button {
      background-color: transparent !important;
    }
    
    
    @media(max-width: 768px) {
      body {
          padding: 0;
      }
    
      .container.gallery-container {
          border-radius: 0;
      }
    }
    @media screen and (max-width: 768px) {
      .nav {
        visibility: hidden;
        left: 0;
      }
      .nav-link {
        font-size: 20px;
        letter-spacing: 0;
      }
      
      
    }
    