/* Hexagonal Menu Styles */
.hexagon-menu {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px 0;
}

.hex-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Base hexagon styles */
.hex-item {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 5px;
    background-color: #F4C430; /* Golden yellow color */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hex-item:hover {
    transform: scale(1.05);
}

.hex-content {
    text-align: center;
    padding: 10px;
}

.hex-content span {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    text-decoration: underline;
    line-height: 1.2;
}

/* Specific layout positioning */
#hex-home {
    position: absolute;
    top: 0;
    right: 25%;
}

#hex-package {
    position: absolute;
    top: 0;
    left: 25%;
}

#hex-services {
    position: absolute;
    bottom: 0;
    left: 25%;
}

#hex-man {
    position: absolute;
    bottom: 0;
    right: 25%;
}

/* Empty space in the center */
.center-hex {
    visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hex-item {
        width: 90px;
        height: 90px;
    }
    
    .hex-content span {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .hex-item {
        width: 70px;
        height: 70px;
    }
    
    .hex-content span {
        font-size: 12px;
    }
}
