@charset "UTF-8";
.honeycomb {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
    position: relative;
  }
  
  .hex-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: -30px; /* Aggiusta la sovrapposizione verticale */
  }
  
  .hex-container {
    position: relative;
    width: 200px; /* 120px */
    height: 230px; /*138px; altezza = larghezza * 1.1547 */
    margin: 0 5px;
  }
  
  .hex-button {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    color: white;
    text-shadow: 1px 1px 4px #000;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    outline: none;
    clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
    padding-top:110px;
  }
  
  .hex-button:hover {
    background-color: #fff;
    color: #2D7EE6;
    text-shadow: 1px 1px 5px #000;
    transform: scale(1.05);
    z-index: 1;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .hex-container {
      width: 120px;
      height: 138px;
      margin: 0 4px;
    }
    
    .hex-row {
      margin-bottom: -25px;
    }
    
    .hex-button {
      font-size: 10px;
      padding-top:60px;
    }
  }
  
  @media (max-width: 480px) {
    .hex-container {
      width: 90px;
      height: 104px;
      margin: 0 3px;
    }
    
    .hex-row {
      margin-bottom: -20px;
    }
    
    .hex-button {
      font-size: 12px;
      padding-top:0px;
    }
  }