a{
 color: #3296f5;
}
#nf-field-9 {
    padding: 10px;
    border-width: 0px;
		border-radius: 9px;
    border-style:none;
    border-color: transparent;
    background-color: #FFCC00;
		color: #ffffff;
		box-shadow: 0px 2px 2px #222;
}
.site-title {
display: none;
}
.site-description {
display: none;
}

.fancy-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: Arial, sans-serif;
  padding: 10px;
}

.fancy-tag-cloud a {
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(to right, #0073aa, #00b8d4);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.fancy-tag-cloud a:hover {
  background: linear-gradient(to right, #f0c000, #fff086);
  transform: scale(1.1);
  font-weight: bold;
}

@media (max-width: 600px) {
  .fancy-tag-cloud {
    justify-content: center;
  }
  .fancy-tag-cloud a {
    font-size: 14px;
    padding: 6px 10px;
  }
}

* { box-sizing: border-box; }

.honeycomb {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 700px;
  margin: 0 auto;
}

.hex {
  width: 300px;
  height: 345px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: absolute;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-image 0.3s ease;
}

.hex::after {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
  z-index: 2;
  font-size: 1.2rem;
  pointer-events: none;
}

.hex a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
}

.topleft     { top: 0; left: 0; }
.topright    { top: 0; left: 306px; }
.center      { top: 265px; left: 153px; }
.bottomleft  { top: 530px; left: 0; }
.bottomright { top: 530px; left: 306px; }

@media (max-width: 768px) {
  .honeycomb {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }

  .hex {
    position: static;
    width: 80%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1 / 0.866;
  }
}

