.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hexagon-link {
    text-decoration: none;
    display: block;
}

.hexagon-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hexagon-container:hover {
    transform: scale(1.1) rotate(5deg);
}

.hexagon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFC400, #FFB700, #FF8A00);
    /* Perfect regular hexagon with flat top/bottom */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.3s ease;
}

.hexagon-container:hover::before {
    background: linear-gradient(135deg, #FF8A00, #FFB700, #FFC400);
    box-shadow: 0 10px 30px rgba(255, 196, 0, 0.5);
}

.hexagon-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #111111;
    font-weight: 700;
    z-index: 1;
}

.hexagon-content p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hexagon-container {
        width: 120px;
        height: 120px;
    }
}
